/Zephyr-latest/tests/kernel/fpu_sharing/generic/src/ |
D | float_regs_riscv_gcc.h | 54 "add t0, t0, t1\n" in _load_all_float_registers() 56 "add t0, t0, t1\n" in _load_all_float_registers() 58 "add t0, t0, t1\n" in _load_all_float_registers() 60 "add t0, t0, t1\n" in _load_all_float_registers() 62 "add t0, t0, t1\n" in _load_all_float_registers() 64 "add t0, t0, t1\n" in _load_all_float_registers() 66 "add t0, t0, t1\n" in _load_all_float_registers() 68 "add t0, t0, t1\n" in _load_all_float_registers() 70 "add t0, t0, t1\n" in _load_all_float_registers() 72 "add t0, t0, t1\n" in _load_all_float_registers() [all …]
|
/Zephyr-latest/modules/hal_infineon/ |
D | CMakeLists.txt | 10 ## Add PDL sources for XMC devices 16 ## Add core-lib sources for CAT1 devices 19 ## Add mtb-pdl-cat1 sources for CAT1 devices 22 ## Add mtb-templates-cat1 sources for CAT1 devices 27 ## Add mtb-hal-cat1 sources for CAT1 devices 30 ## Add catcm0p sleep images for CM0 Devices 35 ## Add abstraction-rtos sources 42 ## Add Wi-Fi assets for AIROC devices 46 ## Add core-lib sources for CAT1 devices 49 ## Add abstraction-rtos sources [all …]
|
/Zephyr-latest/tests/ztest/fail/ |
D | Kconfig | 8 bool "Add a failed assert in the after phase" 11 bool "Add a failed assert in the teardown phase" 14 bool "Add a failed assume in the after phase" 17 bool "Add a failed assume in the teardown phase" 20 bool "Add a call to ztest_test_pass() in the after phase" 23 bool "Add a call to ztest_test_pass() in the teardown phase" 26 bool "Add a test which fails a zassume() call"
|
/Zephyr-latest/samples/net/vlan/ |
D | vlan-setup-linux.sh | 46 ip link add link ${IFACE} name ${VLAN_NAME_PREFIX}.100 type vlan id 100 47 ip link add link ${IFACE} name ${VLAN_NAME_PREFIX}.200 type vlan id 200 52 ip -6 addr add ${PREFIX_1_IPV6}::2/${PREFIXLEN_1_IPV6} dev ${VLAN_NAME_PREFIX}.100 53 ip -6 route add ${PREFIX_1_IPV6}::/${PREFIXLEN_1_IPV6} \ 56 ip -6 addr add ${PREFIX_2_IPV6}::2/${PREFIXLEN_2_IPV6} dev ${VLAN_NAME_PREFIX}.200 57 ip -6 route add ${PREFIX_2_IPV6}::/${PREFIXLEN_2_IPV6} \ 60 ip addr add ${PREFIX_1_IPV4}.2 dev ${VLAN_NAME_PREFIX}.100 61 ip route add ${PREFIX_1_IPV4}/${PREFIXLEN_1_IPV4} dev ${VLAN_NAME_PREFIX}.100 63 ip addr add ${PREFIX_2_IPV4}.2 dev ${VLAN_NAME_PREFIX}.200 64 ip route add ${PREFIX_2_IPV4}/${PREFIXLEN_2_IPV4} dev ${VLAN_NAME_PREFIX}.200
|
/Zephyr-latest/tests/subsys/mgmt/ec_host_cmd/simulator/src/ |
D | main.c | 22 * struct ec_params_add - Parameters to the add command. 34 * struct ec_response_add - Response to the add command. 50 struct ec_params_add add; member 61 struct ec_response_add add; member 171 host_to_dut->header.data_len = sizeof(host_to_dut->add); in ZTEST() 172 host_to_dut->add.in_data = 0x10203040; in ZTEST() 180 sizeof(expected_dut_to_host->add); in ZTEST() 181 expected_dut_to_host->add.out_data = 0x11223344; in ZTEST() 192 host_to_dut->header.data_len = sizeof(host_to_dut->add); in ZTEST() 193 host_to_dut->add.in_data = 0x10203040; in ZTEST() [all …]
|
/Zephyr-latest/tests/benchmarks/latency_measure/ |
D | README.rst | 19 * Time it takes to add data to a fifo.LIFO 70 …fifo.put.immediate.kernel - Add data to FIFO (no ctx switch) : … 72 …fifo.put.alloc.immediate.kernel - Allocate to add data to FIFO (no ctx switch) : … 75 …fifo.put.wake+ctx.k_to_k - Add data to FIFO (w/ ctx switch) : … 77 …fifo.put.alloc.wake+ctx.k_to_k - Allocate to add data to FIFO (w/ ctx switch) : … 78 …lifo.put.immediate.kernel - Add data to LIFO (no ctx switch) : … 80 …lifo.put.alloc.immediate.kernel - Allocate to add data to LIFO (no ctx switch) : … 83 …lifo.put.wake+ctx.k_to_k - Add data to LIFO (w/ ctx switch) : … 85 …lifo.put.alloc.wake+ctx.k_to_k - Allocate to add data to LIFO (w/ ctx siwtch) : … 100 …stack.push.immediate.kernel - Add data to k_stack (no ctx switch) : … [all …]
|
/Zephyr-latest/soc/infineon/cat1a/ |
D | CMakeLists.txt | 8 # Add sections 11 # Add section for cm0p image ROM 14 # Add section for cm0p image RAM
|
/Zephyr-latest/tests/boot/test_mcuboot/ |
D | sysbuild.cmake | 4 # Add the mcuboot key file to the secondary swapped app 11 # Add the swapped app to the build 17 # Add the swapped app to the list of images to flash
|
/Zephyr-latest/samples/net/sockets/dumb_http_server/ |
D | overlay-zeroconf.conf | 1 # Add hostname 10 # Add LLMNR responder
|
/Zephyr-latest/tests/kconfig/functions/ |
D | Kconfig | 6 default $(add, 10) 10 default $(add, 10, 3) 14 default $(add, 10, 3, 2) 90 default $(add, $(inc, 1, 1))
|
/Zephyr-latest/subsys/settings/src/ |
D | settings_line.c | 27 size_t w_size, rem, add; in settings_line_write() local 46 add = sizeof(len_field) % wbs; in settings_line_write() 47 if (add) { in settings_line_write() 48 w_size = wbs - add; in settings_line_write() 89 add = MIN(rem, sizeof(w_buf) - w_size); in settings_line_write() 90 memcpy(&w_buf[w_size], value, add); in settings_line_write() 91 value += add; in settings_line_write() 92 rem -= add; in settings_line_write() 93 w_size += add; in settings_line_write() 95 add = (w_size) % wbs; in settings_line_write() [all …]
|
/Zephyr-latest/boards/ |
D | deprecated.cmake | 8 # To add a board rename, add a line in following format: 11 # When adding board aliases here, remember to add a mention in the corresponding GitHub issue
|
D | index.rst | 6 If you are looking to add Zephyr support for a new board, please start with the 12 Shields are hardware add-ons that can be stacked on top of a board to add extra
|
/Zephyr-latest/tests/kernel/mem_protect/mem_protect/src/ |
D | mem_domain.c | 81 0, "cannot add memory partition"); in test_mem_domain_setup() 90 * If domain is not NULL, add the child thread to that domain, instead of 211 0, "failed to add memory partition"); in ZTEST() 220 /* Extra partition that a user thread can't add to a domain */ 237 0, "failed to add memory partition"); in mem_domain_add_partition_entry() 355 /**TESTPOINT: add to existing domain will do nothing */ in ZTEST() 384 * -# Try to add overlap_part to the memory domain. When adding the new 409 0, "should fail to add memory partition"); in ZTEST() 426 * - Add memory partitions one by one and more than architecture allows to add. 445 /* Add one more partition will fail due to exceeding */ in ZTEST() [all …]
|
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/ |
D | grutils.py | 31 Add a node without any target to the graph. 33 self.__nodes.add(node) 37 Add a directed edge from the C{source} to the C{target}. 41 self.__edge_map[source].add(target) 43 self.__reverse_map[target].add(source) 44 self.__nodes.add(source) 45 self.__nodes.add(target) 60 self.__roots.add(n)
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.dsa | 31 Add support for KSZ8794 DSA device driver. 40 Add support for KSZ8863 DSA device driver. 46 Add support for tail tagging on DSA device.
|
/Zephyr-latest/samples/subsys/shell/shell_module/ |
D | README.rst | 101 add : Add a new dynamic command. 102 Example usage: [ dynamic add test ] will add a dynamic command 105 add up to 20 commands. Commands are automatically sorted to ensure
|
/Zephyr-latest/doc/develop/west/ |
D | alias.rst | 6 West allows to add alias commands to the local, global or system configuration files. 7 These aliases make it easy to add shortcuts for frequently used, or hard to memorize 18 To add a new alias simply call the ``west config`` command: 43 Add ``west run`` and ``west menuconfig`` shortcuts to your global configuration to
|
/Zephyr-latest/.github/ISSUE_TEMPLATE/ |
D | 006_nomination.md | 17 with Read permission do not have the permission to add reviewers to a pull 21 Triage permission level, which allows the user to add reviewers to a pull 36 Add links to 3-5 GitHub pull requests, in the Zephyr project, authored or
|
/Zephyr-latest/doc/releases/ |
D | release-notes-1.8.rst | 29 * Add tickless kernel support 91 * Add block wise support to CoAP for well-known response 205 * ``ZEP-248`` - Add a BOARD/SOC porting guide 207 * ``ZEP-540`` - add APIs for asynchronous transfer callbacks 210 * ``ZEP-720`` - Add MAX30101 heart rate sensor driver 224 * ``ZEP-1388`` - Add support for KW40 SoC 225 * ``ZEP-1391`` - Add support for Hexiwear KW40 226 * ``ZEP-1392`` - Add FXAS21002 gyroscope sensor driver 229 * ``ZEP-1463`` - Add Zephyr Support in segger SystemView 240 * ``ZEP-1684`` - Add Atmel SAM family watchdog (WDT) driver [all …]
|
D | release-notes-1.5.rst | 73 - Add support for network buffer fragmentation. 74 - Add more net_buf big endian helpers. 131 * ``ZEP-225`` - Add kernel API to put SoC to Deep Sleep (DS) State 133 * ``ZEP-227`` - Add kernel API to put SoC to Low Power State (LPS) 142 * ``ZEP-272`` - nios2: add global pointer support 156 * ``ZEP-358`` - Add support for TMP112 sensor 157 * ``ZEP-412`` - Add driver API reentrancy support to RTC driver for LMT 158 * ``ZEP-414`` - Add driver API reentrancy support to flash driver 161 * ``ZEP-424`` - AON counter driver needs to add driver API reentrancy support 162 * ``ZEP-430`` - Add driver API reentrancy support to PWM shim driver [all …]
|
D | release-notes-1.6.rst | 179 * ``ZEP-1173`` - Add support for bonding remove 185 * ``ZEP-248`` - Add a BOARD/SOC porting guide 188 * ``ZEP-521`` - ARM - add choice to floating point ABI selection 194 * ``ZEP-622`` - Add FS API to truncate/shrink a file 196 * ``ZEP-635`` - Add FS API to grow a file 197 * ``ZEP-636`` - Add FS API to get volume total and free space 204 * ``ZEP-715`` - Add K64F clock configurations 205 * ``ZEP-716`` - Add Hexiwear board support 206 * ``ZEP-717`` - Add ksdk I2C shim driver 207 * ``ZEP-718`` - Add ksdk ethernet shim driver [all …]
|
/Zephyr-latest/samples/subsys/usb/common/ |
D | sample_usbd_init.c | 93 /* doc add string descriptor start */ in sample_usbd_setup_device() 117 /* doc add string descriptor end */ in sample_usbd_setup_device() 123 LOG_ERR("Failed to add High-Speed configuration"); in sample_usbd_setup_device() 129 LOG_ERR("Failed to add register classes"); in sample_usbd_setup_device() 140 LOG_ERR("Failed to add Full-Speed configuration"); in sample_usbd_setup_device() 148 LOG_ERR("Failed to add register classes"); in sample_usbd_setup_device() 171 LOG_ERR("Failed to add USB 2.0 Extension Descriptor"); in sample_usbd_setup_device()
|
/Zephyr-latest/samples/subsys/ipc/openamp/ |
D | sysbuild.cmake | 5 # Add external project 12 # Add dependencies so that the remote sample will be built first
|
/Zephyr-latest/samples/drivers/ipm/ipm_mcux/ |
D | sysbuild.cmake | 5 # Add external project 12 # Add dependencies so that the remote sample will be built first
|