/Zephyr-latest/tests/lib/smf/src/ |
D | test_lib_hierarchical_5_ancestor_smf.c | 36 #define TEST_OBJECT(o) ((struct test_object *)o) argument 118 struct test_object *o = TEST_OBJECT(obj); in p05_entry() local 120 zassert_equal(o->transition_bits, test_value[o->tv_idx], in p05_entry() 123 o->transition_bits |= P05_ENTRY_BIT; in p05_entry() 128 struct test_object *o = TEST_OBJECT(obj); in p05_run() local 130 o->tv_idx++; in p05_run() 132 zassert_equal(o->transition_bits, test_value[o->tv_idx], in p05_run() 135 o->transition_bits |= P05_RUN_BIT; in p05_run() 142 struct test_object *o = TEST_OBJECT(obj); in p05_exit() local 144 o->tv_idx++; in p05_exit() [all …]
|
D | test_lib_self_transition_smf.c | 21 #define TEST_OBJECT(o) ((struct test_object *)o) argument 159 struct test_object *o = TEST_OBJECT(obj); in root_entry() local 161 o->tv_idx = 0; in root_entry() 163 zassert_equal(o->transition_bits, test_value[o->tv_idx], "Test Root entry failed"); in root_entry() 165 o->transition_bits |= BIT(ROOT_ENTRY); in root_entry() 170 struct test_object *o = TEST_OBJECT(obj); in root_run() local 172 o->tv_idx++; in root_run() 174 zassert_equal(o->transition_bits, test_value[o->tv_idx], "Test Root run failed"); in root_run() 176 o->transition_bits |= BIT(ROOT_RUN); in root_run() 183 struct test_object *o = TEST_OBJECT(obj); in root_exit() local [all …]
|
D | test_lib_flat_smf.c | 22 #define TEST_OBJECT(o) ((struct test_object *)o) argument 83 struct test_object *o = TEST_OBJECT(obj); in state_a_entry() local 85 o->tv_idx = 0; in state_a_entry() 86 zassert_equal(o->transition_bits, test_value[o->tv_idx], in state_a_entry() 89 if (o->terminate == ENTRY) { in state_a_entry() 94 o->transition_bits |= STATE_A_ENTRY_BIT; in state_a_entry() 99 struct test_object *o = TEST_OBJECT(obj); in state_a_run() local 101 o->tv_idx++; in state_a_run() 102 zassert_equal(o->transition_bits, test_value[o->tv_idx], in state_a_run() 105 o->transition_bits |= STATE_A_RUN_BIT; in state_a_run() [all …]
|
D | test_lib_hierarchical_smf.c | 42 #define TEST_OBJECT(o) ((struct test_object *)o) argument 120 struct test_object *o = TEST_OBJECT(obj); in parent_ab_entry() local 122 o->tv_idx = 0; in parent_ab_entry() 123 zassert_equal(o->transition_bits, test_value[o->tv_idx], in parent_ab_entry() 126 if (o->terminate == PARENT_ENTRY) { in parent_ab_entry() 131 o->transition_bits |= PARENT_AB_ENTRY_BIT; in parent_ab_entry() 136 struct test_object *o = TEST_OBJECT(obj); in parent_ab_run() local 138 o->tv_idx++; in parent_ab_run() 140 zassert_equal(o->transition_bits, test_value[o->tv_idx], in parent_ab_run() 143 if (o->terminate == PARENT_RUN) { in parent_ab_run() [all …]
|
/Zephyr-latest/boards/ronoth/lodev/doc/ |
D | s76s.rst | 104 Pin name Pin Type I/O Structure Note Alternate functions … 107 NRST I/O - - - … 108 PA0 I/O TC - TIM2_CH1, TSC_G1_IO1, USART2_CTS, TIM2_ETR, USART4_TX, COMP1_O… 109 PA1 I/O FT - EVENTOUT, LCD_SEG0, TIM2_CH2, TSC_G1_IO2, USART2_RTS/USART2_DE… 110 PA2 I/O FT - TIM21_CH1, LCD_SEG1, TIM2_CH3, TSC_G1_IO3, USART2_TX, LPUART1_… 111 PA3 I/O FT - TIM21_CH2, LCD_SEG2, TIM2_CH4, TSC_G1_IO4, USART2_RX, LPUART1_… 112 PA4 I/O TC (1) SPI1_NSS, TSC_G2_IO1, USART2_CK, TIM22_ETR … 113 PA5 I/O TC - SPI1_SCK, TIM2_ETR, TSC_G2_IO2, TIM2_CH1 … 114 PA6 I/O FT - SPI1_MISO, LCD_SEG3, TIM3_CH1, TSC_G2_IO3, LPUART1_CTS, TIM22_… 115 PA7 I/O FT - SPI1_MOSI, LCD_SEG4, TIM3_CH2, TSC_G2_IO4, TIM22_CH2, EVENTOUT… [all …]
|
/Zephyr-latest/tests/kernel/context/ |
D | README.txt | 100 thread (q order: 2, t/o: 500) is running 101 got thread (q order: 2, t/o: 500) as expected 102 thread (q order: 3, t/o: 750) is running 103 got thread (q order: 3, t/o: 750) as expected 104 thread (q order: 0, t/o: 1000) is running 105 got thread (q order: 0, t/o: 1000) as expected 106 thread (q order: 6, t/o: 1250) is running 107 got thread (q order: 6, t/o: 1250) as expected 108 thread (q order: 1, t/o: 1500) is running 109 got thread (q order: 1, t/o: 1500) as expected [all …]
|
/Zephyr-latest/drivers/fuel_gauge/bq27z746/ |
D | bq27z746.h | 16 #define BQ27Z746_ATRATETIMETOEMPTY 0x04 /* R/O, Unit: minutes, Range: 0..65535 */ 17 #define BQ27Z746_TEMPERATURE 0x06 /* R/O, Unit: 0.1 K, Range: 0..32767 */ 18 #define BQ27Z746_VOLTAGE 0x08 /* R/O, Unit: mV, Range: 0..32767 */ 19 #define BQ27Z746_BATTERYSTATUS 0x0A /* R/O, Unit: status bits */ 20 #define BQ27Z746_CURRENT 0x0C /* R/O, Unit: mA, Range: -32768..32767 */ 21 #define BQ27Z746_REMAININGCAPACITY 0x10 /* R/O, Unit: mAh, Range: 0..32767 */ 22 #define BQ27Z746_FULLCHARGECAPACITY 0x12 /* R/O, Unit: mAh, Range: 0..32767 */ 23 #define BQ27Z746_AVERAGECURRENT 0x14 /* R/O, Unit: mA, Range: -32768..32767 */ 24 #define BQ27Z746_AVERAGETIMETOEMPTY 0x16 /* R/O, Unit: minutes, Range: 0..65535 */ 25 #define BQ27Z746_AVERAGETIMETOFULL 0x18 /* R/O, Unit: minutes, Range: 0..65535 */ [all …]
|
/Zephyr-latest/scripts/west_commands/completion/ |
D | west-completion.fish | 141 if test \("$tokens[$idx]" = "-z"\) -o \("$tokens[$idx]" = "--zephyr-base"\) 218 if test -z "$tmp_path" -o $tmp_path = "/" 265 if test -z "$manifest_path" -o -z "$manifest_file" 303 …if test -z "$manifest_hash" -o -z "$cache_manifest_hash" -o "$manifest_hash" != "$cache_manifest_h… 340 complete -c west -n "__zephyr_west_exclude -h --help" -o h -l help -d "show help" 341 complete -c west -o v -l verbose -d "enable verbosity" 342 complete -c west -n "__zephyr_west_exclude -V --version" -o V -l version -d "print version" 343 …exclude -z --zephyr-base; or __zephyr_west_is_last_token -z --zephyr-base" -o z -l zephyr-base -xa… 350 …phyr_west_seen_subcommand_from init; and __zephyr_west_exclude -l --local" -o m -l manifest -ra "(… 351 …nd_from init; and __zephyr_west_exclude -m --manifest --mr --manifest-rev" -o l -l local -ra "(__z… [all …]
|
/Zephyr-latest/samples/subsys/smf/hsm_psicc2/src/ |
D | hsm_psicc2_thread.c | 46 static void initial_entry(void *o) in initial_entry() argument 49 struct s_object *obj = (struct s_object *)o; in initial_entry() 54 static void initial_run(void *o) in initial_run() argument 59 static void initial_exit(void *o) in initial_exit() argument 65 static void s_entry(void *o) in s_entry() argument 70 static void s_run(void *o) in s_run() argument 73 struct s_object *obj = (struct s_object *)o; in s_run() 95 static void s_exit(void *o) in s_exit() argument 101 static void s1_entry(void *o) in s1_entry() argument 106 static void s1_run(void *o) in s1_run() argument [all …]
|
/Zephyr-latest/doc/_static/js/ |
D | dark-mode-toggle-stylesheets-loader.min.js | 2 …o=document.getElementById(e).textContent;let c=null;try{c=localStorage.getItem(s)}catch(e){}const … variable
|
/Zephyr-latest/doc/_extensions/zephyr/doxytooltip/static/tippy/ |
D | popper.min.js | 7 …o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof t(e).ShadowRoot||e instanceof ShadowRoot)… function
|
/Zephyr-latest/drivers/gpio/ |
D | gpio_grgpio.h | 10 uint32_t data; /* 0x00 I/O port data register */ 11 uint32_t output; /* 0x04 I/O port output register */ 12 uint32_t dir; /* 0x08 I/O port direction register */ 28 uint32_t output_or; /* 0x54 I/O port output register, logical-OR */ 29 uint32_t dir_or; /* 0x58 I/O port dir. register, logical-OR */ 32 uint32_t output_and; /* 0x64 I/O port output register, logical-AND */ 33 uint32_t dir_and; /* 0x68 I/O port dir. register, logical-AND */ 36 uint32_t output_xor; /* 0x74 I/O port output register, logical-XOR */ 37 uint32_t dir_xor; /* 0x78 I/O port dir. register, logical-XOR */
|
/Zephyr-latest/subsys/ipc/ipc_service/backends/ |
D | ipc_rpmsg_static_vrings.h | 18 * [O] OpenAMP 26 * [O] rpmsg_send_ns_message 27 * [O] virtqueue_kick 28 * [O] virtio_notify_cb 33 * [O] rpmsg_virtio_rx_callback 43 * [O] rpmsg_virtio_rx_callback 44 * [O] ept_cb 50 * [O] OpenAMP 57 * [O] rpmsg_send_ns_message 58 * [O] virtqueue_kick [all …]
|
/Zephyr-latest/include/zephyr/drivers/clock_control/ |
D | renesas_cpg_mssr.h | 2 * Copyright (c) 2016 Open-RnD Sp. z o.o. 5 * Copyright (c) 2017 RnDity Sp. z o.o.
|
/Zephyr-latest/drivers/espi/ |
D | Kconfig.xec | 89 int "Host I/O peripheral port size for shared memory in MEC172X series" 97 int "Host I/O peripheral port size for ec host command in MEC172X series" 112 Enable a 32 byte mailbox interface accessible via Host I/O over the 118 Enable ACPI EC2 interface accessible via Host I/O over the 124 Enable ACPI EC3 interface accessible via Host I/O over the 130 Enable ACPI EC4 interface accessible via Host I/O over the 136 Enable ACPI PM1 interface accessible via Host I/O over the 142 Enable EMI 0 interface accessible via Host I/O over the 148 Enable EMI 1 interface accessible via Host I/O over the 154 Enable EMI 2 interface accessible via Host I/O over the
|
/Zephyr-latest/soc/xlnx/zynq7000/xc7zxxx/ |
D | Kconfig.soc | 21 28k logic cells, 2.1Mb block RAM, 800 DSP slices, up to 100 I/O pins. 28 74k logic cells, 3.3Mb block RAM, 160 DSP slices, up to 150 I/O pins, 36 85k logic cells, 4.9Mb block RAM, 220 DSP slices, up to 200 I/O pins. 43 125k logic cells, 9.3Mb block RAM, 400 DSP slices, up to 250 I/O pins, 51 275k logic cells, 17.6Mb block RAM, 900 DSP slices, up to 362 I/O pins, 59 350k logic cells, 19.1Mb block RAM, 900 DSP slices, up to 362 I/O pins, 67 444k logic cells, 26.5Mb block RAM, 2020 DSP slices, up to 400 I/O pins,
|
/Zephyr-latest/include/zephyr/sd/ |
D | mmc.h | 35 * @retval -EIO: I/O error 52 * @retval -EIO: I/O error 58 * @brief Get I/O control data from MMC card 60 * Sends I/O control commands to MMC card. 62 * @param cmd I/O control command 65 * @param buf I/O control buf 68 * @retval -EIO: I/O failure
|
D | sdmmc.h | 35 * @retval -EIO: I/O error 52 * @retval -EIO: I/O error 58 * @brief Get I/O control data from SD card 60 * Sends I/O control commands to SD card. 62 * @param cmd I/O control command 63 * @param buf I/O control buf 66 * @retval -EIO: I/O failure
|
/Zephyr-latest/arch/x86/ |
D | CMakeLists.txt | 4 # Convert the .bin file argument to a .o file, create a wrapper 5 # library for the .o file, and register the library as a generated 9 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${bin}.o 14 -O ${OUTPUT_FORMAT} 17 ${bin}.o 21 add_custom_target(${bin}_o DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${bin}.o) 23 set_property(TARGET ${bin} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/${bin}.o)
|
/Zephyr-latest/drivers/watchdog/ |
D | wdt_iwdg_stm32.h | 2 * Copyright (c) 2016 Open-RnD Sp. z o.o. 3 * Copyright (c) 2017 RnDity Sp. z o.o.
|
D | Kconfig.stm32 | 3 # Copyright (c) 2016 Open-RnD Sp. z o.o. 4 # Copyright (c) 2017 RnDity Sp. z o.o.
|
/Zephyr-latest/soc/intel/intel_ish/utils/ |
D | build_ish_firmware.cmake | 8 COMMAND ${CMAKE_OBJCOPY} -O binary --remove-section=aon 11 COMMAND ${CMAKE_OBJCOPY} -O binary --only-section=aon 17 -o ${PROJECT_BINARY_DIR}/ish_fw.bin 23 -o ${PROJECT_BINARY_DIR}/ish_fw.bin
|
/Zephyr-latest/lib/libc/minimal/include/ |
D | inttypes.h | 43 #define PRIo8 "o" /* int8_t */ 44 #define PRIo16 "o" /* int16_t */ 45 #define PRIo32 "o" /* int32_t */ 47 #define PRIoFAST8 "o" /* int_fast8_t */ 48 #define PRIoFAST16 "o" /* int_fast16_t */ 49 #define PRIoFAST32 "o" /* int_fast32_t */ 51 #define PRIoLEAST8 "o" /* int_least8_t */ 52 #define PRIoLEAST16 "o" /* int_least16_t */ 53 #define PRIoLEAST32 "o" /* int_least32_t */
|
/Zephyr-latest/samples/modules/thrift/hello/server/ |
D | Makefile | 14 GENOBJ = $(filter-out %.h, $(GENSRC:.cpp=.o)) 37 %.o: %.cpp $(GENHDR) 38 $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(THRIFT_FLAGS) -o $@ -c $< 41 $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(THRIFT_FLAGS) -o $@ $< $(GENOBJ) $(THRIFT_LIBS) 44 …$(CXX) -DCONFIG_THRIFT_COMPACT_PROTOCOL=1 $(CPPFLAGS) $(CXXFLAGS) $(THRIFT_FLAGS) -o $@ $< $(GENO… 47 …$(CXX) -DCONFIG_THRIFT_SSL_SOCKET=1 $(CPPFLAGS) $(CXXFLAGS) $(THRIFT_FLAGS) -o $@ $< $(GENOBJ) $(T…
|
/Zephyr-latest/soc/st/stm32/stm32f1x/ |
D | Kconfig.soc | 3 # Copyright (c) 2016 Open-RnD Sp. z o.o. 4 # Copyright (c) RnDity Sp. z o.o.
|