Home
last modified time | relevance | path

Searched full:resources (Results 1 – 25 of 521) sorted by relevance

12345678910>>...21

/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/
Dconftest.py18 def resources() -> Path: function
19 """Return path to `resources` folder"""
20 return Path(__file__).parent.joinpath('resources')
40 def shell_simulator_path(resources: Path) -> str:
41 return str(resources / 'shell_simulator.py')
/Zephyr-latest/include/zephyr/net/
Dcoap_link_format.h26 * This resource should be added before all other resources that should be
36 * @param resource Array of known resources, terminated with an empty resource
52 * @param resources Array of known resources
53 * @param resources_len Number of resources in the array
61 int coap_well_known_core_get_len(struct coap_resource *resources,
68 * In case you want to add attributes to the resources included in the
/Zephyr-latest/samples/net/sockets/coap_server/
DREADME.rst5 Use the CoAP server subsystem to register CoAP resources.
10 This sample shows how to register CoAP resources to a main CoAP service.
11 The CoAP server implementation expects all services and resources to be
23 The sample exports the following resources:
35 These resources allow a good part of the ETSI test cases to be run
/Zephyr-latest/modules/acpica/
DCMakeLists.txt116 ${COMP_DIR}/resources/rsxface.c
117 ${COMP_DIR}/resources/rsutils.c
118 ${COMP_DIR}/resources/rsaddr.c
119 ${COMP_DIR}/resources/rscalc.c
120 ${COMP_DIR}/resources/rscreate.c
121 ${COMP_DIR}/resources/rsdumpinfo.c
122 ${COMP_DIR}/resources/rsinfo.c
123 ${COMP_DIR}/resources/rsio.c
124 ${COMP_DIR}/resources/rsirq.c
125 ${COMP_DIR}/resources/rslist.c
[all …]
/Zephyr-latest/tests/drivers/regulator/voltage/src/
Dmain.c20 DT_FOREACH_PROP_ELEM(DT_NODELABEL(resources), regulators, REG_INIT)
24 DT_FOREACH_PROP_ELEM(DT_NODELABEL(resources), io_channels, ADC_INIT)
28 DT_PROP(DT_NODELABEL(resources), tolerance_microvolt);
30 static const unsigned int adc_avg_count = DT_PROP(DT_NODELABEL(resources),
32 static const int32_t set_read_delay_ms = DT_PROP(DT_NODELABEL(resources),
35 static const int32_t min_microvolt = DT_PROP(DT_NODELABEL(resources), min_microvolt);
36 static const int32_t max_microvolt = DT_PROP(DT_NODELABEL(resources), max_microvolt);
/Zephyr-latest/doc/connectivity/networking/api/
Dcoap.rst35 - `RFC7641: Observing Resources in the Constrained Application Protocol (CoAP) <https://tools.ietf.…
50 To create a CoAP server, resources for the server need to be defined.
52 resources that should be included in the responses of the ``.well-known/core``
57 static struct coap_resource resources[] = {
72 along with resources defined above to call the correct callback function
80 coap_handle_request(&request, resources, options, opt_num,
83 If :kconfig:option:`CONFIG_COAP_URI_WILDCARD` enabled, server may accept multiple resources
109 If the CoAP client knows about resources in the CoAP server, the client can start
111 about resources in the CoAP server, it can request resources through
Dhttp_server.rst14 and HTTP resources associated with those services. The server creates a listening
29 * Static resources - content defined compile-time, cannot be modified at runtime
32 * Dynamic resources - content provided at runtime by respective application
35 * Websocket resources - allowing to establish Websocket connections with the
56 All HTTP services and HTTP resources are placed in a dedicated linker section.
58 is responsible for defining linker sections for resources associated with
59 respective services. Linker section names for resources should be prefixed with
62 Linker sections for resources should be defined in a linker file. For example,
130 Once HTTP(s) service is defined, resources can be registered for it with
151 Static resources
[all …]
/Zephyr-latest/samples/subsys/lorawan/fuota/
DREADME.rst24 .. _`TS003-2.0.0`: https://resources.lora-alliance.org/technical-specifications/ts003-2-0-0-applica…
25 .. _`TS005-1.0.0`: https://resources.lora-alliance.org/technical-specifications/lorawan-remote-mult…
26 .. _`TS004-1.0.0`: https://resources.lora-alliance.org/technical-specifications/lorawan-fragmented-…
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/
Dleshan.py126 def update_obj_instance(self, endpoint: str, path: str, resources: dict):
128 data = self._define_obj_inst(path, resources)
131 def replace_obj_instance(self, endpoint: str, path: str, resources: dict):
133 data = self._define_obj_inst(path, resources)
136 def create_obj_instance(self, endpoint: str, path: str, resources: dict):
138 data = self._define_obj_inst(path, resources)
174 def _define_obj_inst(cls, path: str, resources: dict):
179 "resources": []
181 for key, value in resources.items():
186 data['resources'].append(cls._define_resource(key, value, kind))
[all …]
/Zephyr-latest/tests/drivers/regulator/voltage/boards/
Dlpcxpresso55s36.overlay12 resources: resources {
Dfrdm_mcxn947_mcxn947_cpu0.overlay13 resources: resources {
Dfrdm_mcxn947_mcxn947_cpu0_qspi.overlay13 resources: resources {
Dfrdm_mcxn236.overlay13 resources: resources {
Drpi_pico.overlay15 resources: resources {
Dfrdm_mcxw71.overlay13 resources: resources {
/Zephyr-latest/include/zephyr/net/http/
Dservice.h45 * dynamic resources may be discovered upon system initialization. Dynamic resources may also be
102 * @brief Define an HTTP service without static resources.
124 * @brief Define an HTTPS service without static resources.
152 * @brief Define an HTTP service with static resources.
178 * @brief Define an HTTPS service with static resources.
217 * @brief Count HTTP service static resources.
231 * @brief Iterate over static HTTP resources associated with a given @p _service.
242 * @brief Iterate over all static resources associated with @p _service .
/Zephyr-latest/doc/_doxygen/
Dmainpage.md10 of Zephyr resources](https://docs.zephyrproject.org/latest/introduction/index.html#resources)
/Zephyr-latest/subsys/net/lib/coap/
Dcoap_link_format.c141 * resources with resource type lux or temperature. in match_attributes()
435 int coap_well_known_core_get_len(struct coap_resource *resources, in coap_well_known_core_get_len() argument
452 if (!resources || !request || !response || !data || !len) { in coap_well_known_core_get_len()
457 /* We have to iterate through resources and it's attributes, in coap_well_known_core_get_len()
515 if (!match_queries_resource(&resources[i], &query, num_queries)) { in coap_well_known_core_get_len()
529 r = format_resource(&resources[i], response, &remaining, &offset, in coap_well_known_core_get_len()
637 int coap_well_known_core_get_len(struct coap_resource *resources, in coap_well_known_core_get_len() argument
651 if (!resources || !request || !response || !data || !data_len) { in coap_well_known_core_get_len()
686 if (!match_queries_resource(&resources[i], &query, num_queries)) { in coap_well_known_core_get_len()
699 r = format_resource(&resources[i], response); in coap_well_known_core_get_len()
[all …]
/Zephyr-latest/
DREADME.rst44 Community support is provided via mailing lists and Discord; see the Resources
47 .. _project-resources:
49 Resources chapter
52 Here's a quick summary of resources to help you find your way around:
86 Additional Resources
/Zephyr-latest/samples/arch/smp/pktqueue/
Dprj.conf1 # Allow worker threads to capture all resources
/Zephyr-latest/samples/arch/smp/pi/
Dprj.conf1 # Allow worker threads to capture all resources
/Zephyr-latest/samples/net/sockets/can/boards/
Dstm32f072b_disco.conf1 # The board has very limited amount of memory so use limited resources
/Zephyr-latest/tests/lib/acpi/integration/src/
Dmain.c66 zassert_ok(ret, "Failed to get MMIO resources"); in ZTEST()
72 zassert_ok(ret, "Failed to get IRQ resources"); in ZTEST()
/Zephyr-latest/modules/hal_infineon/wifi-host-driver/
DCMakeLists.txt7 set(hal_wifi_dir_resources ${hal_dir}/wifi-host-driver/WiFi_Host_Driver/resources)
9 set(hal_blobs_dir ${hal_dir}/zephyr/blobs/img/whd/resources)
27 zephyr_include_directories(${hal_wifi_dir}/WiFi_Host_Driver/resources/resource_imp)
57 # resources/resource_imp
58 zephyr_library_sources(${hal_wifi_dir}/WiFi_Host_Driver/resources/resource_imp/whd_resources.c)
62 zephyr_include_directories(${hal_wifi_dir}/WiFi_Host_Driver/resources/firmware/COMPONENT_43012)
141 zephyr_include_directories(${hal_wifi_dir}/WiFi_Host_Driver/resources/clm/COMPONENT_43012)
/Zephyr-latest/boards/shields/eval_adxl362_ardz/doc/
Dindex.rst40 …https://www.analog.com/en/resources/evaluation-hardware-and-software/evaluation-boards-kits/eval-a…
43 https://wiki.analog.com/resources/eval/user-guides/eval-adicup360/hardware/adxl362

12345678910>>...21