/Zephyr-Core-3.5.0/scripts/west_commands/runners/ |
D | canopen_program.py | 5 '''Runner for performing program download over CANopen (DSP 302-3).''' 23 # Default program number 26 # Program download buffer size in bytes 29 # Program download chunk size in bytes 43 # Program control commands 101 parser.add_argument('--program-number', type=int, default=DEFAULT_PROGRAM_NUMBER, 102 help=f'program number (default: {DEFAULT_PROGRAM_NUMBER})') 108 help='confirm only, no program download (default: no)') 141 '''Download program to flash over CANopen''' 143 self.logger.info('Using Node ID %d, program number %d', [all …]
|
D | core.py | 191 '''FileNotFoundError subclass for missing program dependencies. 195 program that some class requires to proceed. 197 The filename attribute contains the missing program.''' 199 def __init__(self, program): argument 200 super().__init__(errno.ENOENT, os.strerror(errno.ENOENT), program) 338 (have a breakpoint debugger and program loader on a host 347 - 'debug': connect to the board via a debugging protocol, program 360 command does not program the flash. 661 def require(program: str) -> str: 662 '''Require that a program is installed before proceeding. [all …]
|
/Zephyr-Core-3.5.0/include/zephyr/drivers/misc/pio_rpi_pico/ |
D | pio_rpi_pico.h | 17 * @brief Utility macro to define a PIO program. The program is a list 20 * @param name Name of the program. 21 * @param wrap_target Wrap target as specified by the PIO program. 22 * @param wrap Wrap source as specified by the PIO program. 38 * @brief Utility macro to get the wrap target of a program. 40 * @param name Name of the program. 45 * @brief Utility macro to get the wrap source of a program. 47 * @param name Name of the program. 52 * @brief Utility macro to get a pointer to a PIO program. 54 * @param name Name of the program.
|
/Zephyr-Core-3.5.0/scripts/west_commands/tests/ |
D | test_nrf.py | 86 ((['nrfjprog', '--program', RC_KERNEL_HEX, '--sectorerase', '--verify', '-f', 'NRF51', 92 ((['nrfjprog', '--program', RC_KERNEL_HEX, '--chiperase', '--verify', '-f', 'NRF51', 98 ((['nrfjprog', '--program', RC_KERNEL_HEX, '--sectorerase', '--verify', '-f', 'NRF51', 104 ((['nrfjprog', '--program', RC_KERNEL_HEX, '--sectorerase', '--verify', '-f', 'NRF51', 111 ['nrfjprog', '--program', RC_KERNEL_HEX, '--sectorerase', '--verify', '-f', 'NRF51', 118 ['nrfjprog', '--program', RC_KERNEL_HEX, '--chiperase', '--verify', '-f', 'NRF51', 125 ['nrfjprog', '--program', RC_KERNEL_HEX, '--chiperase', '--verify', '-f', 'NRF51', 135 ((['nrfjprog', '--program', RC_KERNEL_HEX, '--sectoranduicrerase', 142 ((['nrfjprog', '--program', RC_KERNEL_HEX, '--chiperase', '--verify', '-f', 'NRF52', 149 ((['nrfjprog', '--program', RC_KERNEL_HEX, '--sectoranduicrerase', [all …]
|
/Zephyr-Core-3.5.0/dts/bindings/dma/ |
D | nxp,smartdma.yaml | 17 program-mem: 21 Program memory to load SMARTDMA routines into. Must be set to a RAM 25 # the driver or application using SMARTDMA can set the DMA program to run
|
/Zephyr-Core-3.5.0/dts/bindings/fs/ |
D | zephyr,fstab,littlefs.yaml | 29 The size of file system program (write) operations, in bytes. 31 All program operations will be a multiple of this value. A 43 needs a read cache, a program cache, and one additional cache per 46 the read and program sizes of the underlying flash device, and a
|
/Zephyr-Core-3.5.0/include/zephyr/llext/ |
D | elf.h | 26 /** Unsigned program address */ 37 /** Unsigned program address */ 80 /** Program header table offset */ 88 /** Program header count */ 90 /** Program header count */ 114 /** Program header table offset */ 122 /** Program header size */ 124 /** Program header count */ 370 * @brief Program header(32-bit) 384 * @brief Program header(64-bit) [all …]
|
/Zephyr-Core-3.5.0/drivers/flash/ |
D | spi_nor.h | 33 #define SPI_NOR_CMD_PP 0x02 /* Page program */ 34 #define SPI_NOR_CMD_PP_1_1_2 0xA2 /* Dual Page program (1-1-2) */ 35 #define SPI_NOR_CMD_PP_1_1_4 0x32 /* Quad Page program (1-1-4) */ 36 #define SPI_NOR_CMD_PP_1_4_4 0x38 /* Quad Page program (1-4-4) */ 59 #define SPI_NOR_CMD_PP_4B 0x12 /* Page Program 4 Byte Address */ 60 #define SPI_NOR_CMD_PP_1_1_4_4B 0x34 /* Quad Page program (1-1-4) 4 Byte Address */ 61 #define SPI_NOR_CMD_PP_1_4_4_4B 0x3e /* Quad Page program (1-4-4) 4 Byte Address */
|
D | Kconfig.simulator | 26 bool "Allow program units to be programmed more than once" 28 …If selected, writing to a non-erased program unit will succeed, otherwise, it will return an error.
|
/Zephyr-Core-3.5.0/samples/boards/mimxrt595_evk_cm33/system_off/ |
D | README.rst | 72 how program the OTP BOOT_CFG1 fuses to use GPIO pin PIO4_5 as the flash 79 the operation. Then program the OTP fuses after confirming the correct 89 program the OTP fuses. To download, go to https://www.nxp.com/mcuboot, 92 Steps to program OTP fuses on MIMXRT595-EVK 113 blhost -u 0x1fc9,0x0023 -- efuse-program-once 0x61 0x164000 132 >blhost -u 0x1fc9,0x0023 -- efuse-program-once 0x61 0x164000 133 Inject command 'efuse-program-once' 134 Successful generic response to command 'efuse-program-once'
|
/Zephyr-Core-3.5.0/subsys/fs/ |
D | Kconfig.littlefs | 37 int "Minimum size of a block program" 40 All program operations will be a multiple of this value. 47 needs a read cache, a program cache, and one additional cache 50 multiple of the read and program sizes of the underlying flash
|
/Zephyr-Core-3.5.0/include/zephyr/drivers/i2c/target/ |
D | eeprom.h | 23 * @brief Program memory of the virtual EEPROM 26 * @param eeprom_data Pointer of data to program into the virtual eeprom memory 27 * @param length Length of data to program into the virtual eeprom memory
|
/Zephyr-Core-3.5.0/modules/canopennode/ |
D | canopennode.h | 100 * @brief Attach CANopen object dictionary program download handlers. 102 * Attach CANopen program download functions to object dictionary 139 * @brief Indicate CANopen program download in progress 141 * Indicate that a CANopen program download is in progress. 143 * @param in_progress true if program download is in progress, false otherwise
|
D | canopen_program.c | 25 /* Common program control commands and status */ 30 /* Zephyr specific program control and status */ 126 LOG_WRN("premature end of program download"); in canopen_odf_1f50() 129 LOG_DBG("program downloaded"); in canopen_odf_1f50() 147 LOG_DBG("program stopped"); in canopen_program_cmd_stop() 174 LOG_DBG("program started"); in canopen_program_cmd_start() 201 LOG_DBG("program cleared"); in canopen_program_cmd_clear() 222 LOG_DBG("program confirmed"); in canopen_program_cmd_confirm() 252 LOG_DBG("program status = %d, cmd = %d", canopen_program_get_status(), in canopen_odf_1f51()
|
/Zephyr-Core-3.5.0/drivers/led/ |
D | lp5562.c | 20 * 2. A program can be transferred to the driver and run by one of the three 22 * program. Possible commands are: 25 * - Loop parts of the program or the whole program. 29 * After the program has been transferred, it can run infinitely without 492 * @brief Start the execution of the program of the given engine. 512 * @brief Stop the execution of the program of the given engine. 532 * @brief Program a command to the memory of the given execution engine. 583 * @brief Program a command to set a fixed brightness to the given engine. 587 * @param command_index Index of the command in the program sequence. 615 * @brief Program a command to ramp the brightness over time. [all …]
|
/Zephyr-Core-3.5.0/scripts/native_simulator/common/src/ |
D | nsi_hw_scheduler.c | 48 * program to exit gracefully when they are received the 1st time 53 * If for some reason (the program is stuck) we never evaluate it, the program 56 * the default handler would be called to terminate the program no matter what.
|
/Zephyr-Core-3.5.0/dts/bindings/flash_controller/ |
D | st,stm32-ospi-nor.yaml | 69 - "PP" # Page program, PP (0x02) up to 256 bytes 70 - "PP_1_1_2" # Dual page program, PP 1-1-2 (0xA2) 77 There is no info about quad page program opcodes in the SFDP 83 If absent, then program page opcode is determined by the
|
/Zephyr-Core-3.5.0/modules/mbedtls/configs/ |
D | config-mini-tls1_1.h | 33 * This program is free software; you can redistribute it and/or modify 38 * This program is distributed in the hope that it will be useful, 44 * with this program; if not, write to the Free Software Foundation, Inc.,
|
D | config-no-entropy.h | 33 * This program is free software; you can redistribute it and/or modify 38 * This program is distributed in the hope that it will be useful, 44 * with this program; if not, write to the Free Software Foundation, Inc.,
|
D | config-thread.h | 33 * This program is free software; you can redistribute it and/or modify 38 * This program is distributed in the hope that it will be useful, 44 * with this program; if not, write to the Free Software Foundation, Inc.,
|
/Zephyr-Core-3.5.0/boards/arc/iotdk/doc/ |
D | index.rst | 139 'c' to continue into the program. 175 Most of the time you will not be flashing your program but will instead debug 176 it using openocd and gdb. The program can be download via the USB cable into 179 When you are ready to deploy the program so that it boots up automatically on 180 reset or power-up, you can follow the steps to place the program on SPI-FLASH 183 For instructions on how to write your program to FLASH, refer to the
|
/Zephyr-Core-3.5.0/boards/posix/native_posix/ |
D | hw_models_top.c | 64 * program to exit gracefully when they are received the 1st time 69 * If for some reason (the program is stuck) we never evaluate it, the program 72 * the default handler would be called to terminate the program no matter what.
|
/Zephyr-Core-3.5.0/samples/boards/bbc_microbit/line_follower_robot/ |
D | README.rst | 18 for the robot to follow. Build and flash the program to the BBC 36 The sample program controls the robot to follow a line track and does
|
/Zephyr-Core-3.5.0/tests/drivers/i2c/i2c_target_api/src/ |
D | main.c | 104 TC_PRINT("Testing program. Master: %s, address: 0x%x, off=%d\n", in run_program_read() 167 /* Program differentiable data into the two devices through a back door in ZTEST() 171 zassert_equal(ret, 0, "Failed to program EEPROM 0"); in ZTEST() 175 zassert_equal(ret, 0, "Failed to program EEPROM 1"); in ZTEST() 220 "Program I2C read EP0 failed"); in ZTEST() 224 "Program I2C read EP1 failed"); in ZTEST()
|
/Zephyr-Core-3.5.0/doc/project/ |
D | index.rst | 28 `program management overview <https://wiki.zephyrproject.org/Program-Management>`_.
|