/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/src/ |
A D | iap.c | 56 command[1] = strSector; in Chip_IAP_PreSectorForReadWrite() 57 command[2] = endSector; in Chip_IAP_PreSectorForReadWrite() 69 command[1] = dstAdd; in Chip_IAP_CopyRamToFlash() 71 command[3] = byteswrt; in Chip_IAP_CopyRamToFlash() 84 command[1] = strSector; in Chip_IAP_EraseSector() 85 command[2] = endSector; in Chip_IAP_EraseSector() 133 command[1] = dstAdd; in Chip_IAP_Compare() 134 command[2] = srcAdd; in Chip_IAP_Compare() 135 command[3] = bytescmp; in Chip_IAP_Compare() 169 command[1] = strPage; in Chip_IAP_ErasePage() [all …]
|
A D | eeprom.c | 54 uint32_t command[5], result[4]; in Chip_EEPROM_Write() local 56 command[0] = IAP_EEPROM_WRITE; in Chip_EEPROM_Write() 57 command[1] = dstAdd; in Chip_EEPROM_Write() 58 command[2] = (uint32_t) ptr; in Chip_EEPROM_Write() 59 command[3] = byteswrt; in Chip_EEPROM_Write() 61 iap_entry(command, result); in Chip_EEPROM_Write() 71 command[0] = IAP_EEPROM_READ; in Chip_EEPROM_Read() 72 command[1] = srcAdd; in Chip_EEPROM_Read() 73 command[2] = (uint32_t) ptr; in Chip_EEPROM_Read() 74 command[3] = bytesrd; in Chip_EEPROM_Read() [all …]
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_iap/example/src/ |
A D | iap.c | 64 static unsigned int command[5], result[4]; variable 114 command[0] = IAP_REPID_CMD; /* Read ID command code */ in main() 115 iap_entry(command, result); in main() 120 command[0] = IAP_REPID_CMD; in main() 121 iap_entry(command, result); in main() 126 command[2] = IAP_LAST_SECTOR; /* End Sector Number */ in main() 127 iap_entry(command, result); in main() 130 command[0] = IAP_ERSSECTOR_CMD; /* Erase command code*/ in main() 133 iap_entry(command, result); in main() 139 iap_entry(command, result); in main() [all …]
|
/lk-master/tools/moot/ |
A D | mtldr | 145 def __dispatch_no_data(self, command): argument 150 command = CommandDispatcher.header_struct.pack(CommandDispatcher.cmd_magic, command, 0) 151 self._ep_out.write(command) 158 def __dispatch_device_to_host(self, command): argument 163 command = CommandDispatcher.header_struct.pack(CommandDispatcher.cmd_magic, command, 0) 164 self._ep_out.write(command) 177 def __dispatch_host_to_device(self, command, data): argument 184 … command = CommandDispatcher.header_struct.pack(CommandDispatcher.cmd_magic, command, len(data)) 185 self._ep_out.write(command) 203 def dispatch(self, command, data=None): argument [all …]
|
/lk-master/platform/pc/ |
A D | keyboard.c | 224 static int i8042_command(uint8_t *param, int command) { in i8042_command() argument 231 i8042_write_command(command & 0xff); in i8042_command() 235 for (i = 0; i < ((command >> 12) & 0xf); i++) { in i8042_command() 245 for (i = 0; i < ((command & 0xf0) >> 8); i++) { in i8042_command()
|
/lk-master/lib/console/ |
A D | console.c | 244 static const console_cmd *match_command(const char *command, const uint8_t availability_mask) { in match_command() argument 251 if (strcmp(command, curr_cmd[i].cmd_str) == 0) { in match_command() 628 const console_cmd *command = match_command(args[0].str, CMD_AVAIL_NORMAL); in command_loop() local 629 if (!command) { in command_loop() 639 con->lastresult = command->cmd_callback(argc, args); in command_loop() 779 const console_cmd *command = match_command(commandstr, CMD_AVAIL_NORMAL); in console_get_command_handler() local 781 if (command) in console_get_command_handler() 782 return command->cmd_callback; in console_get_command_handler() 886 const console_cmd *command = match_command(args[0].str, CMD_AVAIL_PANIC); in panic_shell_start() local 887 if (!command) { in panic_shell_start() [all …]
|
/lk-master/lib/console/include/lib/ |
A D | console.h | 46 console_cmd_func console_get_command_handler(const char *command);
|
/lk-master/external/platform/stellaris/ti-driverlib/ |
A D | makedefs | 73 # The command for calling the compiler. 129 # The command for calling the library archiver. 134 # The command for calling the linker. 159 # The command for extracting images from the linked executables.
|
/lk-master/dev/bus/pci/include/dev/bus/ |
A D | pci.h | 98 uint16_t command; member
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_eeprom/example/ |
A D | readme.dox | 2 * @brief EEPROM example using IAP command to read/write from/to EEPROM
|
/lk-master/dev/bus/pci/ |
A D | debug.cpp | 119 config.command, config.status, config.program_interface, in pci_config()
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 374 # \nosubgrouping command. 686 # popen()) the command command input-file, where command is the value of the 872 # command). 892 # \image command). 898 # by executing (via popen()) the command: 2202 # command. Doxygen will then run the mscgen tool (see: 2343 # accomplished by means of the command \hidecallgraph. 2355 # accomplished by means of the command \hidecallergraph. 2412 # command). 2419 # command). [all …]
|
/lk-master/dev/net/pcnet/ |
A D | pcnet.c | 311 LTRACEF("Command: %04x\n", config.command); in pcnet_read_pci_config() 315 … (config.command | PCI_COMMAND_IO_EN | PCI_COMMAND_BUS_MASTER_EN) & ~PCI_COMMAND_MEM_EN); in pcnet_read_pci_config()
|
/lk-master/external/platform/nrfx/ |
A D | CHANGELOG.md | 141 …se could be violated after the NFCT peripheral was put to the Sleep state with the SLP_REQ command.
|