Home
last modified time | relevance | path

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

12345678910>>...37

/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_platform.py7 This test file contains tests for platform.py module of twister
17 from twisterlib.platform import Platform, Simulator
106 # This test is disabled because the Platform loading was changed significantly.
115 platform = Platform()
118 platform.load('dummy.yaml')
121 if not hasattr(platform, k):
122 assert False, f'No key {k} in platform {platform}'
123 att = getattr(platform, k)
125 assert False, f'Value mismatch in key {k} in platform {platform}'
131 assert platform.__repr__() == expected_repr
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_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 …]
Dtest_testinstance.py19 from pylib.twister.twisterlib.platform import Simulator
64 platform = class_testplan.get_platform("demo_board_2")
65 platform.type = platform_type
66 platform.simulators = [Simulator({"name": platform_sim})] if platform_sim else []
71 testinstance = TestInstance(testsuite, platform, class_testplan.env.outdir)
117 ["platform:demo_board_2/unit_testing:CONFIG_LOG=y"], 'CONFIG_LOG=y'),
119 ["platform:demo_board_1:CONFIG_LOG=y"], ''),
148 platform = class_testplan.get_platform("demo_board_2")
150 testinstance = TestInstance(testcase, platform, class_testplan.env.outdir)
151 platform.type = platform_type
[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 …]
Dtestplan.py34 from twisterlib.platform import Platform
56 # platform keys
57 PLATFORM_KEY = 'platform key filter'
64 # filters related to platform definition
65 PLATFORM = 'Platform related filter' variable in Filters
74 # in case of missing env. variable required for a platform
239 self.selected_platforms = set(p.platform.name for p in self.instances.values())
242 self.selected_platforms = set(p.platform.name for p in self.instances.values())
245 # If the platform does not exist in the hardware map or was not specified by --platform,
250 for _cp in self.options.platform:
[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, outdir): argument
55 self.platform: Platform = platform
67 self.name = os.path.join(platform.name, testsuite.name)
71 self.build_dir = os.path.join(outdir, platform.normalized_name, testsuite.name)
78 platform.normalized_name,
84 # Instance need to use sysbuild if a given suite or a platform requires it
[all …]
Dtwister_main.py139 # if we are using command line platform filter, no need to list every
140 # other platform as excluded, we know that already.
146 if options.platform and not tplan.check_platform(i.platform, options.platform):
149 f"{i.platform.name:<25} {i.testsuite.name:<50}"
184 # the short name of the platform, while the testplan is using the full name.
186 # convert platform names coming from the hardware map to the full target
188 # this is needed to match the platform names in the testplan.
190 if d.platform in tplan.platform_names:
191 d.platform = tplan.get_platform(d.platform).name
Dlog_helper.py8 import platform
11 _WINDOWS = (platform.system() == 'Windows')
14 '''Platform-independent helper for logging subprocess invocations.
/Zephyr-latest/samples/sensor/thermometer/
Dsample.yaml14 - platform:mimxrt1180_evk/mimxrt1189/cm33:SHIELD=p3t1755dp_ard_i2c
15 - platform:mimxrt1180_evk/mimxrt1189/cm7:SHIELD=p3t1755dp_ard_i2c
16 - platform:mimxrt1180_evk/mimxrt1189/cm33:SHIELD=p3t1755dp_ard_i3c
17 - platform:mimxrt1180_evk/mimxrt1189/cm7:SHIELD=p3t1755dp_ard_i3c
/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/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/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/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/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/doc/hardware/arch/
Darm-scmi.rst17 Agent, platform, protocol and transport
26 #. Platform
56 This describes how messages are exchanged between agents and the platform.
65 A **channel** is the medium through which agents and the platform exchange messages.
74 #. A2P (agent to platform)
77 #. P2A (platform to agent)
78 The platform is the initiator/requester.
86 These are commands that block until the platform has completed the
89 For these commands, the platform schedules the requested work to
98 the platform. These are sent over P2A channels.
[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>>...37