Home
last modified time | relevance | path

Searched full:platform (Results 1 – 25 of 952) sorted by relevance

12345678910>>...39

/Zephyr-latest/samples/drivers/display/
Dsample.yaml90 - platform:lpcxpresso55s69/lpc55s69/cpu0:SHIELD=adafruit_2_8_tft_touch_v2
91 - platform:nrf52840dk/nrf52840:SHIELD=ssd1306_128x32
92 - platform:frdm_k64f/mk64f12:SHIELD=ssd1306_128x64
93 - platform:mimxrt685_evk/mimxrt685/cm33:SHIELD=waveshare_epaper_gdeh0213b1
94 - platform:nucleo_l433rc_p/stm32l433xx:SHIELD=waveshare_epaper_gdew042t2
95 - platform:nrf52dk/nrf52832:SHIELD=st7789v_tl019fqv01
96 - platform:mimxrt1010_evk/mimxrt1011:SHIELD=st7789v_waveshare_240x240
97 - platform:frdm_k22f/mk22f51212:SHIELD=ls013b7dh03
98 - platform:nrf52833dk/nrf52833:SHIELD=st7735r_ada_160x128
99 - platform:mimxrt1170_evk/mimxrt1176/cm7:SHIELD=rk055hdmipi4m
[all …]
/Zephyr-latest/scripts/tests/twister/
Dtest_quarantine.py22 ['dummy platform', 'another platform'],
30 ['dummy platform', 'another platform'],
38 ['dummy platform', 'all'],
100 'platforms': ['dummy platform'],
106 platforms=['dummy platform'],
128 \"platforms\": [\"dummy platform\"],
138 platforms=['dummy platform'],
184 'good platform',
191 'very bad dummy platform',
198 'good platform',
[all …]
Dtest_hardwaremap.py24 DUT(platform='p1', id=1, serial='s1', product='pr1', connected=True),
25 DUT(platform='p2', id=2, serial='s2', product='pr2', connected=False),
26 DUT(platform='p3', id=3, serial='s3', product='pr3', connected=True),
27 DUT(platform='p4', id=4, serial='s4', product='pr4', connected=False),
28 DUT(platform='p5', id=5, serial='s5', product='pr5', connected=True),
29 DUT(platform='p6', id=6, serial='s6', product='pr6', connected=False),
30 DUT(platform='p7', id=7, serial='s7', product='pr7', connected=True),
31 DUT(platform='p8', id=8, serial='s8', product='pr8', connected=False)
52 'platform': 'dummy platform',
74 'platform': 'dummy platform',
[all …]
Dtest_platform.py7 This test file contains tests for platform.py module of twister
20 from twisterlib.platform import Platform, Simulator, generate_platforms
109 # This test is disabled because the Platform loading was changed significantly.
118 platform = Platform()
121 platform.load('dummy.yaml')
124 if not hasattr(platform, k):
125 assert False, f'No key {k} in platform {platform}'
126 att = getattr(platform, k)
128 assert False, f'Value mismatch in key {k} in platform {platform}'
134 assert platform.__repr__() == expected_repr
[all …]
Dtest_testplan.py23 from twisterlib.platform import Platform
98 platform = plan.get_platform("demo_board_1")
99 assert isinstance(platform, Platform)
100 assert platform.name == "demo_board_1/unit_testing"
104 …("platform_allow", ['demo_board_1/unit_testing'], None, None, "Not in testsuite platform allow lis…
106 ("platform_exclude", ['demo_board_2'], None, None, "In test case platform exclude"),
110 …sensor', 'bluetooth']), "ignore_tags", ['bluetooth'], "Excluded tags per platform (exclude_tags)"),
114 ("build_on_all", True, None, None, "Platform is excluded on command line."),
179 platform=['demo_board_2/unit_testing'])
184 platform=['demo_board_2/unit_testing'])
[all …]
/Zephyr-latest/modules/hal_nordic/nrf_802154/
DCMakeLists.txt4 zephyr_library_named(nrf-802154-platform)
8 target_sources(nrf-802154-platform
10 radio/platform/nrf_802154_random_zephyr.c
11 sl_opensource/platform/nrf_802154_clock_zephyr.c
12 sl_opensource/platform/nrf_802154_irq_zephyr.c
13 sl_opensource/platform/nrf_802154_temperature_zephyr.c
18 target_sources(nrf-802154-platform
20 serialization/platform/nrf_802154_serialization_crit_sect.c
21 serialization/platform/nrf_802154_spinel_log.c
22 serialization/platform/nrf_802154_spinel_backend_ipc.c
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dhardwaremap.py9 import platform
41 platform=None, argument
57 self.platform = platform
130 return f"<{self.platform} ({self.product}) on {self.serial}>"
192 if not self.options.platform:
193 self.options.platform = []
195 if d.connected and d.platform != 'unknown':
196 self.options.platform.append(d.platform)
200 self.options.platform[0],
211 self.options.platform[0],
[all …]
Dplatform.py46 class Platform: class
47 """Class representing metadata for a particular platform
52 os.path.join(ZEPHYR_BASE, "scripts", "schemas", "twister", "platform-schema.yaml")
63 # if sysbuild to be used by default on a given platform
92 """Load the platform data from the board data and target data
193 """Initialize and yield all Platform instances.
196 platform names and load the test platform description files.
198 An exception is raised if not all platform files are valid YAML,
199 or if not all platform names are unique.
217 data = scl.yaml_load_verify(file, Platform.platform_schema)
[all …]
Dtestinstance.py33 from twisterlib.platform import Platform
42 """Class representing the execution of a particular TestSuite on a platform
45 @param platform Platform object that we want to build and run against
47 out directory used is <outdir>/<platform>/<test case name>
52 def __init__(self, testsuite, platform, toolchain, outdir): argument
55 self.platform: Platform = platform
70 self.name = os.path.join(platform.name, toolchain, testsuite.name)
75 outdir, platform.normalized_name, self.toolchain, testsuite.name
83 platform.normalized_name,
90 # Instance need to use sysbuild if a given suite or a platform requires it
[all …]
Dtestplan.py33 from twisterlib.platform import Platform, generate_platforms
55 # platform keys
56 PLATFORM_KEY = 'platform key filter'
63 # filters related to platform definition
64 PLATFORM = 'Platform related filter' variable in Filters
73 # in case of missing env. variable required for a platform
238 self.selected_platforms = set(p.platform.name for p in self.instances.values())
241 self.selected_platforms = set(p.platform.name for p in self.instances.values())
244 # If the platform does not exist in the hardware map or was not specified by --platform,
249 for _cp in self.options.platform:
[all …]
Dtwister_main.py108 # if we are using command line platform filter, no need to list every
109 # other platform as excluded, we know that already.
115 if options.platform and not tplan.check_platform(i.platform, options.platform):
118 f"{i.platform.name:<25} {i.testsuite.name:<50}"
153 # the short name of the platform, while the testplan is using the full name.
155 # convert platform names coming from the hardware map to the full target
157 # this is needed to match the platform names in the testplan.
159 if d.platform in tplan.platform_names:
160 d.platform = tplan.get_platform(d.platform).name
/Zephyr-latest/samples/sensor/thermometer/
Dsample.yaml22 - platform:mimxrt1180_evk/mimxrt1189/cm33:SHIELD=p3t1755dp_ard_i2c
23 - platform:mimxrt1180_evk/mimxrt1189/cm7:SHIELD=p3t1755dp_ard_i2c
24 - platform:frdm_mcxn236/mcxn236:SHIELD=p3t1755dp_ard_i2c
25 - platform:mimxrt700_evk/mimxrt798s/cm33_cpu0:SHIELD=p3t1755dp_ard_i2c
41 - platform:mimxrt1180_evk/mimxrt1189/cm33:SHIELD=p3t1755dp_ard_i3c
42 - platform:mimxrt1180_evk/mimxrt1189/cm7:SHIELD=p3t1755dp_ard_i3c
43 - platform:frdm_mcxn236/mcxn236:SHIELD=p3t1755dp_ard_i3c
/Zephyr-latest/tests/drivers/stepper/stepper_api/
Dtestcase.yaml12 - platform:native_sim/native/64:DTC_OVERLAY_FILE="boards/native_sim_adi_tmc2209.overlay"
21 - platform:native_sim/native/64:DTC_OVERLAY_FILE="boards/native_sim_ti_drv8424.overlay"
22 … - platform:nucleo_f767zi/stm32f767xx:DTC_OVERLAY_FILE="boards/nucleo_f767zi_ti_drv8424.overlay"
32 … - platform:native_sim/native/64:DTC_OVERLAY_FILE="boards/native_sim_zephyr_gpio_stepper.overlay"
33 …- platform:nucleo_g071rb/stm32g071xx:DTC_OVERLAY_FILE="boards/nucleo_g071rb_zephyr_gpio_stepper.ov…
34 - platform:qemu_x86_64/atom:DTC_OVERLAY_FILE="boards/qemu_x86_64_zephyr_gpio_stepper.overlay"
/Zephyr-latest/tests/crypto/mbedtls_psa/
Dtestcase.yaml2 # supported on any platform. A very minimal configuration is tested here: simply
13 # - platform should be testable by the CI.
14 # - pick 1 platform which supports entropy driver and 1 which does not. The
25 # Pick a platform which has an entropy driver and enable it.
32 # Pick a platform which does not have an entropy driver. In this case we
/Zephyr-latest/modules/hal_infineon/btstack-integration/
DCMakeLists.txt17 zephyr_include_directories(${btstack_integration}/COMPONENT_BTSS-IPC/platform/include)
18 zephyr_include_directories(${btstack_integration}/COMPONENT_BTSS-IPC/platform/ipc/include)
20 …zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/ipc/cybt_platform_freert…
21 zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/ipc/cybt_platform_hci.c)
22 zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/ipc/cybt_bt_task.c)
23 …zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/ipc/cybt_host_stack_plat…
24 …zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/ipc/cybt_platform_task.c)
26 …zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/common/cybt_platform_mai…
27 …zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/common/cybt_platform_tra…
28 zephyr_library_sources(${btstack_integration}/COMPONENT_BTSS-IPC/platform/common/cybt_prm.c)
[all …]
/Zephyr-latest/samples/subsys/usb/webusb-next/src/
Dwebusb.h12 * WebUSB platform capability and WebUSB URL descriptor.
25 struct usb_bos_platform_descriptor platform; member
30 /* WebUSB Platform Capability Descriptor:
31 * https://wicg.github.io/webusb/#webusb-platform-capability-descriptor
33 .platform = {
39 /* WebUSB Platform Capability UUID
/Zephyr-latest/samples/subsys/dap/src/
Dwebusb.h12 * WebUSB platform capability and WebUSB URL descriptor.
25 struct usb_bos_platform_descriptor platform; member
30 /* WebUSB Platform Capability Descriptor:
31 * https://wicg.github.io/webusb/#webusb-platform-capability-descriptor
33 .platform = {
39 /* WebUSB Platform Capability UUID
/Zephyr-latest/boards/snps/emsdp/
DKconfig.emsdp1 # DesignWare ARC EM Software Development Platform board configuration
16 The ARC EM Software Development Platform (emsdp) is an FPGA based
17 development platform intended to support ARC licenses in developing
/Zephyr-latest/samples/drivers/video/capture/
Dsample.yaml10 - platform:mimxrt1064_evk:SHIELD="dvp_fpc24_mt9m114;rk043fn66hs_ctg"
11 - platform:mimxrt1170_evk/mimxrt1176/cm7:SHIELD="nxp_btb44_ov5640;rk055hdmipi4ma0"
12 - platform:mimxrt1170_evk@B/mimxrt1176/cm7:SHIELD="nxp_btb44_ov5640;rk055hdmipi4ma0"
/Zephyr-latest/samples/net/cloud/tagoio_http_post/
DKconfig4 mainmenu "TagoIO IoT Cloud Platform (HTTP Post) Client Configuration"
43 module-str = TagoIO IoT Cloud Platform
44 module-help = Enables logging for TagoIO IoT Cloud Platform.
/Zephyr-latest/modules/trusted-firmware-m/nordic/nrf9120/
DCMakeLists.txt9 add_subdirectory(${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/common/nrf91 nrf…
17 install(FILES ${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/common/nrf912…
23 install(DIRECTORY ${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/nrf9161dk_nrf…
/Zephyr-latest/modules/trusted-firmware-m/nordic/nrf9160/
DCMakeLists.txt9 add_subdirectory(${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/common/nrf91 nrf…
17 install(FILES ${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/common/nrf916…
23 install(DIRECTORY ${Trusted\ Firmware\ M_SOURCE_DIR}/platform/ext/target/nordic_nrf/nrf9160dk_nrf…
/Zephyr-latest/tests/lib/spsc_pbuf/
Dtestcase.yaml5 # Exclude platform which does not link with cache functions
22 # Exclude platform which does not link with cache functions
31 # Exclude platform which does not link with cache functions
/Zephyr-latest/tests/subsys/usb/bos/src/
Dtest_bos.c41 /* WebUSB Platform Capability Descriptor:
42 * https://wicg.github.io/webusb/#webusb-platform-capability-descriptor
50 /* WebUSB Platform Capability UUID
66 /* Microsoft OS 2.0 Platform Capability Descriptor
81 * MS OS 2.0 Platform Capability ID
111 struct usb_bos_platform_descriptor platform; member
114 .platform = {
120 /* WebUSB Platform Capability UUID
139 struct usb_bos_platform_descriptor platform; member
142 .platform = {
[all …]
/Zephyr-latest/scripts/schemas/twister/
Dplatform-schema.yaml2 # Schema to validate a YAML file describing a Zephyr test platform
12 schema;platform-schema:
20 include: platform-schema
126 include: platform-schema

12345678910>>...39