Home
last modified time | relevance | path

Searched full:s2 (Results 1 – 25 of 155) sorted by relevance

1234567

/Zephyr-latest/scripts/tests/twister/
Dtest_platform.py142 'p1e1/s1', 'p1e2/s1', 'p2/s1', 'p3@A/s2/c1', 'p3@B/s2/c1',
149 'p1e1/s1', 'p1e2/s1', 'p2/s1', 'p3@A/s2/c1', 'p3@B/s2/c1',
157 'p1e1/s1', 'p1e2/s1', 'p2/s1', 'p3@A/s2/c1', 'p3@B/s2/c1',
159 'p3@A/s2/c2', 'p3@B/s2/c2', 'p4/s1',
244 - name: s2
252 p3/s2/c1:
255 p3@B/s2/c1:
266 - name: s2
317 p3@A/s2/c2:
322 - extend: s2
[all …]
/Zephyr-latest/boards/infineon/cy8ckit_062s2_ai/doc/
Dindex.rst6 The PSOC 6 AI Evaluation Kit (CY8CKIT-062S2-AI) is a cost effective and small development kit that
20 For more information about the CY8C624ABZI-S2D44 MCU SoC and CY8CKIT-062S2-AI board:
24 - `CY8CKIT-062S2-AI Website`_
25 - `CY8CKIT-062S2-AI User Guide`_
26 - `CY8CKIT-062S2-AI Schematics`_
44 The CY8CKIT-062S2-AI board requires fetch binary files (e.g CM0+ prebuilt images).
66 The CY8CKIT-062S2-AI board includes an onboard programmer/debugger (`KitProg3`_)
139 .. _CY8CKIT-062S2-AI Website:
140 https://www.infineon.com/cms/en/product/evaluation-boards/cy8ckit-062s2-ai/?redirId=273839
142 .. _CY8CKIT-062S2-AI User Guide:
[all …]
/Zephyr-latest/boards/espressif/esp32s2_devkitc/doc/
Dindex.rst6 ESP32-S2-DevKitC is an entry-level development board. This board integrates complete Wi-Fi function…
8 Developers can either connect peripherals with jumper wires or mount ESP32-S2-DevKitC on a breadboa…
9 For more information, check `ESP32-S2-DevKitC`_.
14 ESP32-S2 is a highly integrated, low-power, single-core Wi-Fi Microcontroller SoC, designed to be s…
38 For more information, check the datasheet at `ESP32-S2 Datasheet`_ or the technical reference
39 manual at `ESP32-S2 Technical Reference Manual`_.
185 ESP32-S2 support on OpenOCD is available at `OpenOCD ESP32`_.
187 The following table shows the pin mapping between ESP32-S2 board and JTAG interface.
201 Further documentation can be obtained from the SoC vendor in `JTAG debugging for ESP32-S2`_.
222 .. _`ESP32-S2-DevKitC`: https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/…
[all …]
/Zephyr-latest/boards/espressif/esp32s2_saola/doc/
Dindex.rst6 ESP32-S2-Saola is a small-sized ESP32-S2 based development board produced by Espressif.
8 Developers can either connect peripherals with jumper wires or mount ESP32-S2-Saola on a breadboard.
14 ESP32-S2 is a highly integrated, low-power, single-core Wi-Fi Microcontroller SoC, designed to be s…
38 For more information, check the datasheet at `ESP32-S2 Datasheet`_ or the technical reference
39 manual at `ESP32-S2 Technical Reference Manual`_.
185 ESP32-S2 support on OpenOCD is available at `OpenOCD ESP32`_.
187 The following table shows the pin mapping between ESP32-S2 board and JTAG interface.
201 Further documentation can be obtained from the SoC vendor in `JTAG debugging for ESP32-S2`_.
223 .. _`ESP32-S2 Datasheet`: https://www.espressif.com/sites/default/files/documentation/esp32-s2_data…
224 .. _`ESP32-S2 Technical Reference Manual`: https://espressif.com/sites/default/files/documentation/…
[all …]
/Zephyr-latest/scripts/coccinelle/
Dderef_null.cocci43 statement S1,S2;
47 if@p1 ((E == NULL && ...) || ...) S1 else S2
56 statement S1,S2,S3,S4;
64 ... when != if (...) S1 else S2
117 statement S1,S2,S3,S4;
125 ... when != if (...) S1 else S2
177 statement S1,S2,S3,S4;
185 ... when != if (...) S1 else S2
239 statement S1,S2;
243 if@p1 ((E == NULL && ...) || ...) S1 else S2
[all …]
/Zephyr-latest/lib/libc/minimal/source/string/
Dstring.c123 * @return negative # if <s1> < <s2>, 0 if <s1> == <s2>, else positive #
126 int strcmp(const char *s1, const char *s2) in strcmp() argument
128 while ((*s1 == *s2) && (*s1 != '\0')) { in strcmp()
130 s2++; in strcmp()
133 return *s1 - *s2; in strcmp()
140 * @return negative # if <s1> < <s2>, 0 if <s1> == <s2>, else positive #
143 int strncmp(const char *s1, const char *s2, size_t n) in strncmp() argument
145 while ((n > 0) && (*s1 == *s2) && (*s1 != '\0')) { in strncmp()
147 s2++; in strncmp()
151 return (n == 0) ? 0 : (*s1 - *s2); in strncmp()
Dstrncasecmp.c11 strncasecmp(const char *s1, const char *s2, size_t n) in strncasecmp() argument
20 lower2 = tolower((unsigned char)*s2++); in strncasecmp()
/Zephyr-latest/doc/services/smf/
Dindex.rst56 enum demo_state { S0, S1, S2 };
61 [S2] = SMF_CREATE_STATE(s2_entry, s2_run, s2_exit, NULL, NULL)
66 enum demo_state { S0, S1, S2 };
71 [S2] = SMF_CREATE_STATE(s2_entry, s2_run, s2_exit, parent_s12, NULL)
76 from parent state S0 to child state S2::
78 enum demo_state { S0, S1, S2 };
84 [S0] = SMF_CREATE_STATE(s0_entry, s0_run, s0_exit, NULL, demo_states[S2]),
86 [S2] = SMF_CREATE_STATE(s2_entry, s2_run, s2_exit, demo_states[S0], NULL)
185 enum demo_state { S0, S1, S2 };
212 smf_set_state(SMF_CTX(&s_obj), &demo_states[S2]);
[all …]
/Zephyr-latest/tests/ztest/zexpect/src/
Dmain.c179 const char s2[] = {'a', 's', 'd', 'f', '\0'}; in ZTEST() local
181 zexpect_str_equal(s1, s2); in ZTEST()
188 const char s2[] = {'a', 's', 'd', 'f', 'q', '\0'}; in ZTEST() local
190 zexpect_str_equal(s1, s2); in ZTEST()
/Zephyr-latest/dts/bindings/clock/
Despressif,esp32-rtc.yaml20 ESP32_RTC_FAST_CLK_SRC_XTAL_D4 Main XTAL divided by 4 (ESP32/S2)
31 - 0: ESP32_RTC_SLOW_CLK_SRC_RC_SLOW - 136 KHz (C3/S3) - 90 kHz (S2) - 150 kHz (ESP32)
/Zephyr-latest/scripts/build/
Dcheck_init_priorities_test.py76 s2 = mock.Mock()
77 s2.name = "b"
78 s2.entry.st_info.type = "STT_FUNC"
79 s2.entry.st_size = 8
80 s2.entry.st_value = 0xbb
81 s2.entry.st_shndx = 2
83 sts.iter_symbols.return_value = [s0, s1, s2]
107 s2 = mock.Mock()
108 s2.name = "__init_PRE_KERNEL_2_start"
109 s2.entry.st_value = 0x22
[all …]
/Zephyr-latest/boards/franzininho/esp32s2_franzininho/
Dboard.yml3 full_name: ESP32-S2 Franzininho
Desp32s2_franzininho.yaml2 name: ESP32-S2 Franzininho
/Zephyr-latest/boards/wemos/esp32s2_lolin_mini/
Dboard.yml3 full_name: ESP32-S2 Lolin Mini
DKconfig.esp32s2_lolin_mini1 # ESP32S2 LOLIN S2 MINI board configuration
Desp32s2_lolin_mini.yaml2 name: Lolin ESP32-S2 Mini
/Zephyr-latest/boards/espressif/esp32s2_devkitc/
Dboard.yml3 full_name: ESP32-S2-DevKitC
Desp32s2_devkitc.yaml2 name: ESP32-S2 DevKitC
/Zephyr-latest/boards/espressif/esp32s2_saola/
Dboard.yml3 full_name: ESP32-S2-Saola
Desp32s2_saola.yaml2 name: ESP32-S2 Saola
/Zephyr-latest/boards/infineon/cy8ckit_062s2_ai/
Dcy8ckit_062s2_ai.yaml2 name: CY8CKIT-062S2-AI PSOC 6 AI Evaluation Kit
/Zephyr-latest/lib/libc/minimal/include/
Dstring.h28 extern int strcmp(const char *s1, const char *s2);
29 extern int strncmp(const char *s1, const char *s2, size_t n);
Dstrings.h18 extern int strncasecmp(const char *s1, const char *s2, size_t n);
/Zephyr-latest/samples/boards/espressif/xt_wdt/
DREADME.rst16 9 KHz for S2).
24 * ESP32-S2
/Zephyr-latest/tests/ztest/base/src/
Dmain.c42 const char s2[] = {'a', 's', 'd', 'f', '\0'}; in ZTEST() local
44 zassert_str_equal(s1, s2); in ZTEST()
51 const char s2[] = {'a', 's', 'd', 'f', 'q', '\0'}; in ZTEST() local
53 zassert_str_equal(s1, s2); in ZTEST()

1234567