mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:32:45 +01:00
commit
d8615675ec
@ -334,7 +334,7 @@ static int _init(netdev_t *netdev)
|
||||
|
||||
netdev_tap_t *dev = container_of(netdev, netdev_tap_t, netdev);
|
||||
|
||||
/* check device parametrs */
|
||||
/* check device parameters */
|
||||
if (dev == NULL) {
|
||||
return -ENODEV;
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ typedef struct {
|
||||
#define MCI_RESP_136 (1ul << 11) /**< 136 bit response */
|
||||
#define MCI_RESP_CRC (1ul << 12) /**< Expect valid crc */
|
||||
#define MCI_RESP_BUSY (1ul << 13) /**< Card may send busy */
|
||||
#define MCI_CMD_OPENDRAIN (1ul << 14) /**< Open drain for a braodcast command */
|
||||
#define MCI_CMD_OPENDRAIN (1ul << 14) /**< Open drain for a broadcast command */
|
||||
#define MCI_CMD_WRITE (1ul << 15) /**< To signal a data write operation */
|
||||
#define MCI_CMD_SDIO_BYTE (1ul << 16) /**< To signal a SDIO transfer in multi byte mode */
|
||||
#define MCI_CMD_SDIO_BLOCK (1ul << 17) /**< To signal a SDIO transfer in block mode */
|
||||
|
@ -124,7 +124,7 @@ typedef uint32_t sdmmc_cmd_def_t;
|
||||
#define SDMMC_RESP_CRC (1lu << 12)
|
||||
//! Card may send busy
|
||||
#define SDMMC_RESP_BUSY (1lu << 13)
|
||||
// Open drain for a braodcast command (bc)
|
||||
// Open drain for a broadcast command (bc)
|
||||
// or to enter in inactive state (MCI only)
|
||||
#define SDMMC_CMD_OPENDRAIN (1lu << 14)
|
||||
//! To signal a data write operation
|
||||
|
2
dist/tools/eclipsesym/README.md
vendored
2
dist/tools/eclipsesym/README.md
vendored
@ -4,7 +4,7 @@ cmdline2xml.sh
|
||||
Export all command line include paths and macro definitions to an XML file
|
||||
suitable for import in Eclipse CDT.
|
||||
|
||||
Instrucions
|
||||
Instructions
|
||||
-----------
|
||||
|
||||
The Eclipse project must be located at "/RIOT" inside your Eclipse workspace,
|
||||
|
2
dist/tools/eclipsesym/cmdline2xml.sh
vendored
2
dist/tools/eclipsesym/cmdline2xml.sh
vendored
@ -30,7 +30,7 @@ readlink () { echo $(cd $(dirname $1); pwd)/$(basename $1); }
|
||||
|
||||
XML_INSTRUCTIONS='
|
||||
<!--
|
||||
Instrucions:
|
||||
Instructions:
|
||||
|
||||
In Eclipse:
|
||||
1. Open the project properties, menu Project->Properties
|
||||
|
2
dist/tools/esptools/esptool.py
vendored
2
dist/tools/esptools/esptool.py
vendored
@ -155,7 +155,7 @@ class ESPLoader(object):
|
||||
ESP_WRITE_REG = 0x09
|
||||
ESP_READ_REG = 0x0a
|
||||
|
||||
# Some comands supported by ESP32 ROM bootloader (or -8266 w/ stub)
|
||||
# Some commands supported by ESP32 ROM bootloader (or -8266 w/ stub)
|
||||
ESP_SPI_SET_PARAMS = 0x0B
|
||||
ESP_SPI_ATTACH = 0x0D
|
||||
ESP_CHANGE_BAUDRATE = 0x0F
|
||||
|
2
dist/tools/esptools/esptool_v3.2.py
vendored
2
dist/tools/esptools/esptool_v3.2.py
vendored
@ -243,7 +243,7 @@ class ESPLoader(object):
|
||||
ESP_WRITE_REG = 0x09
|
||||
ESP_READ_REG = 0x0a
|
||||
|
||||
# Some comands supported by ESP32 ROM bootloader (or -8266 w/ stub)
|
||||
# Some commands supported by ESP32 ROM bootloader (or -8266 w/ stub)
|
||||
ESP_SPI_SET_PARAMS = 0x0B
|
||||
ESP_SPI_ATTACH = 0x0D
|
||||
ESP_READ_FLASH_SLOW = 0x0e # ROM only, much slower than the stub flash read
|
||||
|
@ -54,7 +54,7 @@ class MainArgumentParser(object):
|
||||
|
||||
# create_parser.add_argument('-v', '--manifest-version', choices=['1'], default='1')
|
||||
create_parser.add_argument('-i', '--input-file', metavar='FILE', type=argparse.FileType('r'),
|
||||
help='An input file describing the update. The file must be formatted as JSON. The overal structure is described in README.')
|
||||
help='An input file describing the update. The file must be formatted as JSON. The overall structure is described in README.')
|
||||
create_parser.add_argument('-o', '--output-file', metavar='FILE', type=argparse.FileType('wb'), required=True)
|
||||
create_parser.add_argument('-f', '--format', metavar='FMT', choices=['suit', 'suit-debug', 'json'], default='suit')
|
||||
create_parser.add_argument('-s', '--severable', action='store_true', help='Convert large elements to severable fields.')
|
||||
|
@ -37,7 +37,7 @@
|
||||
*
|
||||
* The NRF24L01+ expects data to be send over SPI from LSByte to MSByte
|
||||
* and will output data bytes also from LSByte to MSByte!
|
||||
* See the datasheet page 47, 8.3.1 SPI comands.
|
||||
* See the datasheet page 47, 8.3.1 SPI commands.
|
||||
*
|
||||
* This shall be the address register of pipe 0 inside the transceiver:
|
||||
* [ x, x, x, x, x] (x = undefined content)
|
||||
|
Loading…
Reference in New Issue
Block a user