/Zephyr-latest/modules/hal_nordic/nrfs/ |
D | CMakeLists.txt | 16 zephyr_include_directories(${INC_DIR}/services) 25 … zephyr_library_sources_ifdef(CONFIG_NRFS_CLOCK_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_clock.c) 26 … zephyr_library_sources_ifdef(CONFIG_NRFS_DIAG_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_diag.c) 27 … zephyr_library_sources_ifdef(CONFIG_NRFS_DVFS_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_dvfs.c) 28 … zephyr_library_sources_ifdef(CONFIG_NRFS_GDPWR_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_gdpwr.c) 29 … zephyr_library_sources_ifdef(CONFIG_NRFS_MRAM_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_mram.c) 30 … zephyr_library_sources_ifdef(CONFIG_NRFS_PMIC_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_pmic.c) 31 … zephyr_library_sources_ifdef(CONFIG_NRFS_RESET_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_reset.c) 32 … zephyr_library_sources_ifdef(CONFIG_NRFS_TEMP_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_temp.c) 33 …zephyr_library_sources_ifdef(CONFIG_NRFS_VBUS_DETECTOR_SERVICE_ENABLED ${SRC_DIR}/services/nrfs_us… [all …]
|
D | Kconfig | 7 menu "nRF Services" 44 bool "nRF Services Support" 51 This option enables the nRF Services library. 56 bool "nRF Services Local Domain Support" 63 This option enables the nRF Services Local Domain libraries. 71 menu "Enabled Services" 74 module-str = nRF-Services
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/host/ |
D | gatt.rst | 7 print all the services that are available on the GATT server. 9 On the server side, you can register pre-defined test services using the :code:`gatt register` 10 command. When done, you should see the newly added services on the client side when running the 13 You can now subscribe to those new services on the client side. Here is an example on how to
|
/Zephyr-latest/subsys/lorawan/services/ |
D | Kconfig | 1 # LoRaWAN Services configuration 9 bool "LoRaWAN Services backend" 13 Enables the LoRaWAN background services, e.g. used for 16 The services use a dedicated thread and a work queue. 25 int "Services thread stack size" 28 Stack size of thread running LoRaWAN background services. 31 int "Services thread priority" 34 Priority of the thread running LoRaWAN background services.
|
D | lorawan_services.h | 15 * Unique package identifiers used for LoRaWAN services. 25 * Default ports used for LoRaWAN services. 48 * @brief Reschedule a delayable work item to the LoRaWAN services work queue 51 * any of the services for internal tasks.
|
/Zephyr-latest/tests/net/lib/mdns_responder/src/ |
D | main.c | 110 static struct service_info services[EXT_RECORDS_NUM]; variable 191 memset(services, 0, sizeof(services)); in test_setup() 198 services[i].record = &records[i]; in test_setup() 200 records[i].instance = services[i].instance; in test_setup() 201 records[i].service = services[i].service; in test_setup() 202 records[i].proto = services[i].proto; in test_setup() 203 records[i].domain = services[i].domain; in test_setup() 204 records[i].text = services[i].text; in test_setup() 205 records[i].port = &services[i].port; in test_setup() 255 if (services[i].record == rec) { in free_ext_record() [all …]
|
/Zephyr-latest/doc/services/tfm/ |
D | overview.rst | 16 Through a set of secure services and by design, TF-M provides: 73 foundation upon which to build or access trusted services and resources. 85 * PSA Updateable Root of Trust: most trusted secure services 86 * Application Root of Trust (**ARoT**): isolated secure services 97 services and components in TF-M, such as the Secure Partition Manager (SPM), 98 and shared secure services like PSA Crypto, Internal Trusted Storage (ITS), 99 etc. Services in the PSA Updateable Root of Trust have access to other 104 building TF-M, has limited access to the PRoT, or even other ARoT services at 105 the highest isolation levels. Some standard services exist in the ARoT, such as 106 Protected Storage (PS), and generally custom secure services that you implement [all …]
|
/Zephyr-latest/doc/_scripts/ |
D | redirects.py | 98 ('guides/crypto/index', 'services/crypto/index'), 99 ('guides/crypto/tinycrypt', 'services/crypto/tinycrypt'), 100 ('guides/device_mgmt/dfu', 'services/device_mgmt/dfu'), 101 ('guides/device_mgmt/index', 'services/device_mgmt/index'), 102 ('guides/device_mgmt/mcumgr', 'services/device_mgmt/mcumgr'), 103 ('guides/device_mgmt/ota', 'services/device_mgmt/ota'), 129 ('guides/pm/device', 'services/pm/device'), 130 ('guides/pm/device_runtime', 'services/pm/device_runtime'), 131 ('guides/pm/index', 'services/pm/index'), 132 ('guides/pm/overview', 'services/pm/overview'), [all …]
|
/Zephyr-latest/tests/kernel/msgq/msgq_usage/src/ |
D | main.c | 35 static ZTEST_DMEM struct k_msgq *services[NUM_SERVICES]; variable 60 k_msgq_put(pclient, services, K_NO_WAIT); in service_manager_entry() 63 services[0] = (struct k_msgq *)data[1]; in service_manager_entry() 67 services[1] = (struct k_msgq *)data[1]; in service_manager_entry() 72 if (services[i] == (struct k_msgq *)data[1]) { in service_manager_entry() 73 services[i] = NULL; in service_manager_entry() 122 /* inform services manager */ in service1_entry() 153 /* inform services manager */ in service2_entry() 190 /* wait all services started */ in client_entry() 194 /* query services */ in client_entry() [all …]
|
/Zephyr-latest/subsys/bluetooth/services/ |
D | Kconfig | 1 # GATT Services 6 menu "GATT Services"
|
/Zephyr-latest/doc/_doxygen/ |
D | groups.dox | 9 @defgroup os_services Operating System Services 10 @brief Operating System Services 64 @brief APIs to interact with third-party services or applications
|
/Zephyr-latest/tests/subsys/lorawan/clock_sync/ |
D | prj.conf | 14 # Random number generator required for several LoRaWAN services 22 # LoRaWAN services required for this test
|
/Zephyr-latest/include/zephyr/drivers/sip_svc/ |
D | sip_svc_proto.h | 12 * @brief Arm SiP services communication protocol 58 /** @brief Arm SiP services command code in request header 95 * - Unsupported Arm SiP services command code 109 * - bits [15: 0] Arm SiP services command code 112 * - bits [31:30] Arm SiP services communication protocol version 148 /** @brief SiP Services service communication protocol 155 * - bits [31:30] Arm SiP services communication protocol version
|
D | sip_svc_agilex_mailbox.h | 14 * Arm SiP Services SMC protocol and sent to/from SDM via Arm 15 * SiP Services.
|
/Zephyr-latest/subsys/bluetooth/services/nus/ |
D | nus_internal.h | 10 #include <zephyr/bluetooth/services/nus.h> 11 #include <zephyr/bluetooth/services/nus/inst.h>
|
/Zephyr-latest/.github/workflows/ |
D | twister-prep.yaml | 25 subset: ${{ steps.output-services.outputs.subset }} 26 size: ${{ steps.output-services.outputs.size }} 27 fullrun: ${{ steps.output-services.outputs.fullrun }} 96 id: output-services 113 subset: ${{ steps.output-services.outputs.subset }} 114 size: ${{ steps.output-services.outputs.size }} 115 fullrun: ${{ steps.output-services.outputs.fullrun }} 133 id: output-services
|
/Zephyr-latest/tests/subsys/lorawan/frag_decoder/ |
D | prj.conf | 14 # Random number generator required for several LoRaWAN services 22 # LoRaWAN services required for this test
|
/Zephyr-latest/samples/bluetooth/st_ble_sensor/ |
D | README.rst | 5 Export vendor-specific GATT services over BLE. 11 GATT services. Currently only button notification and LED service are 12 implemented. Other Bluetooth LE sensor services can easily be added.
|
/Zephyr-latest/samples/subsys/lorawan/fuota/ |
D | prj.conf | 14 # Random number generator required for several LoRaWAN services 22 # LoRaWAN services required for FUOTA
|
/Zephyr-latest/doc/introduction/ |
D | index.rst | 28 certain services. Subsystems can include components such as networking, 54 **Extensive suite of Kernel services** 55 Zephyr offers a number of familiar services for development: 57 * *Multi-threading Services* for cooperative, priority-based, 61 * *Interrupt Services* for compile-time registration of interrupt handlers. 63 * *Memory Allocation Services* for dynamic allocation and freeing of 66 * *Inter-thread Synchronization Services* for binary semaphores, 69 * *Inter-thread Data Passing Services* for basic message queues, enhanced 72 * *Power Management Services* such as overarching, application or
|
/Zephyr-latest/modules/trusted-firmware-m/nordic/include/ |
D | tfm_ioctl_api.h | 14 /* Include core IOCTL services */ 21 /* Board specific IOCTL services can be added here */
|
/Zephyr-latest/modules/trusted-firmware-m/nordic/src/ |
D | tfm_platform_system.c | 22 /* Core IOCTL services */ in tfm_platform_hal_ioctl() 32 /* Board specific IOCTL services */ in tfm_platform_hal_ioctl()
|
/Zephyr-latest/samples/bluetooth/peripheral/ |
D | README.rst | 5 …mplement basic Bluetooth LE Peripheral role functionality (advertising and exposing GATT services). 11 vendor-specific GATT services that it exposes.
|
/Zephyr-latest/include/zephyr/sip_svc/ |
D | sip_svc.h | 12 * @brief Public API for ARM SiP services 70 * SiP services. 85 * @param ctrl Pointer to controller instance which provides ARM SiP services. 106 * @param ctrl Pointer to controller instance which provides ARM SiP services. 122 * @brief Client requests to close the channel on ARM SiP services. 126 * @param ctrl Pointer to controller instance which provides ARM SiP services. 146 * @param ctrl Pointer to controller instance which provides ARM SiP services.
|
/Zephyr-latest/samples/tfm_integration/tfm_secure_partition/ |
D | README.rst | 4 Create a secure partition that exposes secure services. 10 "secure services" to other partitions and/or to the non-secure firmware. TF-M already contains 26 https://tf-m-user-guide.trustedfirmware.org/integration_guide/services/tfm_secure_partition_additio…
|