Home
last modified time | relevance | path

Searched refs:FOO (Results 1 – 19 of 19) sorted by relevance

/Zephyr-latest/doc/build/kconfig/
Dextensions.rst17 config FOO
18 bool "FOO"
21 configdefault FOO
28 config FOO
39 configdefault FOO
43 configdefault FOO
54 The recommended syntax for referencing environment variables is ``$(FOO)``
55 rather than ``$FOO``. This uses the new `Kconfig preprocessor
57 The ``$FOO`` syntax for expanding environment variables is only supported for
Dtips.rst251 bool "FOO SoC"
357 config FOO
360 In this case, ``FOO`` will end up with this definition:
364 config FOO
369 ``FOO`` in :file:`Kconfig.other`, because the ``DEP`` dependency has already
386 config FOO
391 default 0x200 if FOO
394 Assume that the intention here is to use a larger stack whenever ``FOO`` is
395 enabled, and that the configuration initially has ``FOO`` disabled. Also,
402 0x100, as expected. After enabling ``FOO``, you might reasonably expect the
[all …]
Dsetting.rst306 For example, the dependencies of the symbol ``FOO`` below are satisfied if
311 config FOO
315 config FOO
322 assignable. The definition below will result in ``FOO`` always being
327 config FOO
328 bool "FOO"
331 config FOO
384 the name of the choice is ``FOO``):
388 choice FOO
400 To change the default symbol of ``FOO`` to ``A``, you would add the
[all …]
/Zephyr-latest/tests/unit/util/
Dmain.c203 #undef FOO in ZTEST()
204 #define FOO(x) item_##x##_ in ZTEST() macro
205 zassert_equal(MACRO_MAP_CAT(FOO, a, b, c), 1, "MACRO_MAP_CAT"); in ZTEST()
206 #undef FOO in ZTEST()
371 #undef FOO in ZTEST()
372 #define FOO(n, arg, fixed_arg) \ in ZTEST() macro
375 FOR_EACH_IDX_FIXED_ARG(FOO, (;), a, 1, 2, 3); in ZTEST()
/Zephyr-latest/doc/build/dts/
Dapi-usage.rst201 #define FOO DT_NODELABEL(foo)
203 int a[] = DT_PROP(FOO, a); /* {1000, 2000, 3000} */
204 unsigned char b[] = DT_PROP(FOO, b); /* {0xaa, 0xbb, 0xcc, 0xdd} */
205 char* c[] = DT_PROP(FOO, c); /* {"foo", "bar"} */
212 size_t a_len = DT_PROP_LEN(FOO, a); /* 3 */
213 size_t b_len = DT_PROP_LEN(FOO, b); /* 4 */
214 size_t c_len = DT_PROP_LEN(FOO, c); /* 2 */
Dtroubleshooting.rst207 ``FOO``) for more information.
/Zephyr-latest/cmake/compiler/armclang/
Dtarget.cmake15 # Strip out any trailing +<FOO> from GCC_M_CPU for cases when GCC_M_CPU is
/Zephyr-latest/doc/kernel/services/other/
Dfatal.rst141 BUILD_ASSERT(FOO == 2000, "Invalid value of FOO");
148 include/toolchain/gcc.h:28:37: error: static assertion failed: "Invalid value of FOO"
152 BUILD_ASSERT(FOO == 2000,
/Zephyr-latest/doc/develop/west/
Dextensions.rst124 # $ west my-command-name -o FOO BAR
125 # --optional is FOO
/Zephyr-latest/doc/develop/
Dmodules.rst432 If the module ``FOO`` is provided by :ref:`west <west>` but also given with
435 This allows you to use a custom version of ``FOO`` when building and still
642 Notice how a lowercase module name ``foo`` is capitalized to ``FOO``
651 # Do something if FOO exists.
869 The following is an example on how to add support the ``FOO`` module.
/Zephyr-latest/tests/lib/devicetree/api/
Dapp.overlay902 label = "FOO";
/Zephyr-latest/doc/build/sysbuild/
Dindex.rst227 For example, to set the CMake variable ``FOO`` in the ``my_sample`` application
263 For example, to set the Kconfig option ``FOO`` in the ``my_sample`` application
/Zephyr-latest/cmake/modules/
Dextensions.cmake3149 # reading a current scope FOO variable is identical to expand ${FOO}.
3150 # reading a cache scope FOO variable is identical to expand $CACHE{FOO}.
3181 # zephyr_get(FOO VAR FOO_A FOO_B)
3182 # zephyr_get(FOO MERGE VAR FOO_A FOO_B)
5402 # FOO: bar
5406 # will create a list as: "FOO;bar;QUX;TRUE" which can then be parsed as argument
/Zephyr-latest/tests/lib/devicetree/api/src/
Dmain.c3117 zassert_false(DT_HAS_FIXED_PARTITION_LABEL(FOO)); in ZTEST()
3118 zassert_false(DT_NODE_EXISTS(DT_NODE_BY_FIXED_PARTITION_LABEL(FOO))); in ZTEST()
/Zephyr-latest/doc/releases/
Drelease-notes-2.3.rst1233 …555` - Add support to device tree generation support for DT_NODELABEL_<node-label>_<FOO> generation
1234 * :github:`22554` - Add support to device tree generation support for DT_PATH_<path>_<FOO> generati…
Drelease-notes-3.2.rst908 label = "FOO";
917 const struct device *my_dev = device_get_binding("FOO");
/Zephyr-latest/doc/services/logging/
Dindex.rst241 module = FOO
/Zephyr-latest/doc/hardware/porting/
Dboard_porting.rst572 config FOO
/Zephyr-latest/doc/develop/application/
Dindex.rst679 warning: Experimental symbol FOO is enabled.