Home
last modified time | relevance | path

Searched full:sources (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/Zephyr-Core-3.4.0/drivers/hwinfo/
Dhwinfo_mcux_rcm.c14 * @brief Translate from RCM reset source mask to Zephyr hwinfo sources mask.
22 static uint32_t hwinfo_mcux_rcm_xlate_reset_sources(uint32_t sources) in hwinfo_mcux_rcm_xlate_reset_sources() argument
27 if (sources & kRCM_SourceWakeup) { in hwinfo_mcux_rcm_xlate_reset_sources()
32 if (sources & kRCM_SourceLvd) { in hwinfo_mcux_rcm_xlate_reset_sources()
37 if (sources & kRCM_SourceLoc) { in hwinfo_mcux_rcm_xlate_reset_sources()
43 if (sources & kRCM_SourceLol) { in hwinfo_mcux_rcm_xlate_reset_sources()
48 if (sources & kRCM_SourceWdog) { in hwinfo_mcux_rcm_xlate_reset_sources()
52 if (sources & kRCM_SourcePin) { in hwinfo_mcux_rcm_xlate_reset_sources()
56 if (sources & kRCM_SourcePor) { in hwinfo_mcux_rcm_xlate_reset_sources()
61 if (sources & kRCM_SourceJtag) { in hwinfo_mcux_rcm_xlate_reset_sources()
[all …]
/Zephyr-Core-3.4.0/tests/ztest/fail/core/
DCMakeLists.txt8 # Add the sources
9 list(APPEND SOURCES src/main.cpp)
11 list(APPEND SOURCES src/assert_after.cpp)
13 list(APPEND SOURCES src/assert_teardown.cpp)
15 list(APPEND SOURCES src/assume_after.cpp)
17 list(APPEND SOURCES src/assume_teardown.cpp)
19 list(APPEND SOURCES src/pass_after.cpp)
21 list(APPEND SOURCES src/pass_teardown.cpp)
23 list(APPEND SOURCES src/unexpected_assume.cpp)
36 target_sources(app PRIVATE ${SOURCES})
/Zephyr-Core-3.4.0/subsys/mgmt/osdp/
DCMakeLists.txt9 # PD mode specific sources
12 # CP mode specific sources
15 # Secure Channel sources
18 # Common sources
/Zephyr-Core-3.4.0/modules/hal_infineon/
DCMakeLists.txt10 ## Add PDL sources for XMC devices
16 ## Add core-lib sources for CAT1 devices
19 ## Add mtb-pdl-cat1 sources for CAT1 devices
24 ## Add mtb-hal-cat1 sources for CAT1 devices
32 ## Add abstraction-rtos sources
/Zephyr-Core-3.4.0/tests/subsys/logging/log_links/src/
Dmain.c85 .sources = domain1_sources,
91 .sources = domain2_sources,
97 .sources = domain3_sources,
165 test_single_compile_level(1, 0, domains_a[0]->sources[0].clevel); in ZTEST()
166 test_single_compile_level(1, 1, domains_a[0]->sources[1].clevel); in ZTEST()
167 test_single_compile_level(1, 3, domains_a[0]->sources[3].clevel); in ZTEST()
168 test_single_compile_level(2, 2, domains_a[1]->sources[2].clevel); in ZTEST()
169 test_single_compile_level(3, 2, domains_b[0]->sources[2].clevel); in ZTEST()
206 test_single_runtime_level(1, 0, &domains_a[0]->sources[0].rlevel); in ZTEST()
207 test_single_runtime_level(1, 3, &domains_a[0]->sources[3].rlevel); in ZTEST()
[all …]
Dmock_log_link.c46 strncpy(buf, mock->domains[domain_id]->sources[source_id].source, in get_source_name()
48 *length = strlen(mock->domains[domain_id]->sources[source_id].source); in get_source_name()
58 *level = mock->domains[domain_id]->sources[source_id].clevel; in get_levels()
61 *runtime_level = mock->domains[domain_id]->sources[source_id].rlevel; in get_levels()
72 mock->domains[domain_id]->sources[source_id].rlevel = level; in set_runtime_level()
/Zephyr-Core-3.4.0/soc/arm/arm/beetle/
Dpower.c99 * @brief Setup initial wakeup sources on SoC.
101 * Setup the SoC wakeup sources.
106 /* Configure Wakeup Sources */ in wakeup_src_init()
111 * @brief Setup various clocks and wakeup sources in the SoC.
113 * Configures the clocks and wakeup sources in the SoC.
126 /* Setup initial wakeup sources */ in soc_power_init()
Dsoc_power.h15 * @brief Setup various clocks and wakeup sources in the SoC.
17 * Configures the clocks and wakeup sources in the SoC.
/Zephyr-Core-3.4.0/samples/bluetooth/broadcast_audio_sink/
DKconfig16 bool "Whether to scan for Broadcast Sources without Broadcast Assistant"
19 If set to true, the sample will start scanning for Broadcast Sources
29 before starting scanning for Broadcast Sources.
/Zephyr-Core-3.4.0/dts/bindings/interrupt-controller/
Dcypress,psoc6-intmux.yaml9 user can select up to 32 interrupts sources from the 240 possible vectors
14 4 interrupt sources by grouping intmux channels. These means that each byte
17 Cortex-M0+ NVIC controller. Note that Cortex-M4 have all interrupt sources
21 configuration and how the Cortex-M0+ NVIC sources are organized. Each
32 sources and the proper NVIC interrupt order. With that, the system configures
64 2) The interrupt sources are shared between Cortex-M0+/M4. These means, can
/Zephyr-Core-3.4.0/tests/ztest/fail/
DCMakeLists.txt7 # Add the sources and set up the build for either unit testing or native_posix
8 list(APPEND SOURCES src/main.cpp)
23 # Create the project and set the sources for the target
25 target_sources(${target} PRIVATE ${SOURCES})
/Zephyr-Core-3.4.0/cmake/modules/
Dunittest.cmake18 # SOURCES: list of source files, default main.c
40 find_package(Deprecated COMPONENTS SOURCES)
42 if(NOT SOURCES AND EXISTS main.c)
43 set(SOURCES main.c) variable
46 add_executable(testbinary ${SOURCES})
103 message(FATAL_ERROR "This variable is not supported, see SOURCES instead")
DFindDeprecated.cmake100 if("SOURCES" IN_LIST Deprecated_FIND_COMPONENTS)
101 list(REMOVE_ITEM Deprecated_FIND_COMPONENTS SOURCES)
102 if(SOURCES)
104 "Setting SOURCES prior to calling find_package() for unit tests is deprecated."
105 " To add sources after find_package() use:\n"
/Zephyr-Core-3.4.0/doc/build/dts/
Dintro-scope-purpose.rst21 There are two types of devicetree input files: *devicetree sources* and
22 *devicetree bindings*. The sources contain the devicetree itself. The bindings
24 <build_overview>` uses devicetree sources and bindings to produce a generated C
/Zephyr-Core-3.4.0/scripts/west_commands/zspdx/
Dcmakefileapi.py150 # A member of the target.sources array
179 self.sources = []
236 self.sources = []
239 return f"TargetCompileGroup: {self.sources}"
292 self.sources = []
294 # only if sources are grouped together by source_group() or by default
297 # only if target has sources that compile
Dwalker.py94 # walk through pending sources and create corresponding files
95 log.inf("walking through pending sources files")
168 cfgZephyr.name = "zephyr-sources"
173 # also set up zephyr sources package
175 cfgPackageZephyr.name = "zephyr-sources"
176 cfgPackageZephyr.spdxID = "SPDXRef-zephyr-sources"
177 # relativeBaseDir is Zephyr sources topdir
181 …log.err(f"cannot find west_topdir for CMake Codemodel sources path {self.cm.paths_source}; bailing…
199 cfgApp.name = "app-sources"
204 # also set up app sources package
[all …]
Dcmakefileapijson.py261 sources_arr = js.get("sources", [])
269 target.sources.append(src)
403 # and link target's sources and source groups
404 for ts in cfgTarget.target.sources:
427 targetSrcGrp.sources = []
429 targetSrcGrp.sources.append(target.sources[srcIndex])
434 targetCmpGrp.sources = []
436 targetCmpGrp.sources.append(target.sources[srcIndex])
/Zephyr-Core-3.4.0/include/zephyr/drivers/interrupt_controller/
Dintc_esp32.h48 * The esp_intr_alloc* functions can allocate an int for all *_INTR_SOURCE int sources that
49 * are routed through the interrupt mux. Apart from these sources, each core also has some internal
50 * sources that do not pass through the interrupt mux. To allocate an interrupt for these sources,
51 * pass these pseudo-sources to the functions.
139 * sources, as defined in esp-xtensa-intmux.h, or one of the internal
140 * ETS_INTERNAL_*_INTR_SOURCE sources as defined in this header.
177 * sources, as defined in esp-xtensa-intmux.h, or one of the internal
178 * ETS_INTERNAL_*_INTR_SOURCE sources as defined in this header.
252 * 1. For local interrupts (ESP_INTERNAL_* sources), this function has to be called on the
269 * @note For local interrupts (ESP_INTERNAL_* sources), this function has to be called on the
/Zephyr-Core-3.4.0/drivers/interrupt_controller/
Dintc_mchp_ecia_xec.c57 uint8_t sources[32]; member
234 * MCHP_XEC_ECIA. For aggregated only sources the encoding sets direct NVIC
336 if (!(cfg->sources[src] & BIT(7))) { in mchp_xec_ecia_set_callback_by_dev()
341 int idx = (int)(cfg->sources[src] & ~BIT(7)); in mchp_xec_ecia_set_callback_by_dev()
397 if (!(cfg->sources[src] & BIT(7))) { in mchp_ecia_unset_callback_by_dev()
402 int idx = (int)(cfg->sources[src] & ~BIT(7)); in mchp_ecia_unset_callback_by_dev()
480 if (cfg->sources[bitpos] & BIT(7)) { in xec_girq_isr()
482 idx = (uint32_t)cfg->sources[bitpos] & ~BIT(7); in xec_girq_isr()
506 * GIRQ22 aggregated output and sources are not connected to the NVIC.
556 /* xec_config_girq_xxx.sources[] entries from GIRQ node */
[all …]
/Zephyr-Core-3.4.0/include/zephyr/dt-bindings/interrupt-controller/
Dmchp-xec-ecia.h14 * nd = bits[31:24], direct NVIC number. For sources without a direct
16 * NOTE: GIRQ22 is a peripheral clock wake only. GIRQ22 and its sources
/Zephyr-Core-3.4.0/samples/boards/esp32/deep_sleep/
DREADME.rst16 The following wake up sources are demonstrated in this example:
24 GPIOS0~5 can be used as wake-up sources.
63 With both wake up sources enabled, the console output will be as below. The
/Zephyr-Core-3.4.0/drivers/sensor/iis2dlpc/
Diis2dlpc_trigger.c192 iis2dlpc_all_sources_t sources; in iis2dlpc_handle_interrupt() local
194 iis2dlpc_all_sources_get(ctx, &sources); in iis2dlpc_handle_interrupt()
196 if (sources.status_dup.drdy) { in iis2dlpc_handle_interrupt()
200 if (sources.status_dup.single_tap) { in iis2dlpc_handle_interrupt()
203 if (sources.status_dup.double_tap) { in iis2dlpc_handle_interrupt()
208 if (sources.all_int_src.wu_ia) { in iis2dlpc_handle_interrupt()
/Zephyr-Core-3.4.0/samples/boards/esp32/deep_sleep/boards/
Desp32.conf1 # Enables GPIO2 and GPIO4 as wakeup sources
Desp32s2_saola.conf1 # Enables GPIO2 and GPIO4 as wakeup sources
/Zephyr-Core-3.4.0/dts/bindings/adc/
Dti,lmp90xxx-current.yaml1 # Common fields for Texas Instruments LMP90xxx AFEs with current sources

12345678910>>...13