Home
last modified time | relevance | path

Searched refs:instances (Results 1 – 25 of 177) sorted by relevance

12345678

/Zephyr-latest/subsys/usb/device_next/class/
DKconfig.template.instances_count1 # Kconfig template file for setting instances count for various USB classes.
7 int "Number of $(module) instances"
10 Number of instances of this USB class implementation.
/Zephyr-latest/subsys/net/lib/lwm2m/
DKconfig.ipso20 int "Maximum # of IPSO Temperature Sensor object instances"
25 Sensor instances available to the LWM2M client.
50 int "Maximum # of IPSO Generic Sensor object instances"
54 Sensor instances available to the LWM2M client.
90 int "Maximum # of IPSO Humidity Sensor object instances"
94 Sensor instances available to the LWM2M client.
121 int "Maximum # of IPSO Pressure Sensor object instances"
125 Sensor instances available to the LWM2M client.
153 int "Maximum # of IPSO Light Control object instances"
158 instances available to the LWM2M client.
[all …]
DKconfig.ucifi20 int "Maximum # of uCIFI Battery object instances"
24 instances available to the LWM2M client.
37 int "Maximum # of uCIFI LPWAN object instances"
41 This value sets the maximum allowable number of LPWAN instances.
DKconfig338 resources in the security object instances.
341 int "Maximum # of DTLS/TLS ciphersuite resource instances"
346 This setting sets the maximum number of the resource instances of
351 int "Maximum # of LwM2M Security object instances"
356 This setting establishes the total count of LwM2M Security instances
360 int "Maximum # of LwM2M Server object instances"
365 This setting establishes the total count of LwM2M Server instances
537 int "Maximum # of LwM2M Access Control object instances" if LWM2M_ACCESS_CONTROL_ENABLE
540 This setting establishes the total count of LwM2M Access Control instances
568 int "Maximum # of available network bearer resource instances"
[all …]
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/
Dmipi_syst.py78 instances = database.database['log_subsys']['log_instances']
80 if not instances:
86 for _, one_inst in instances.items():
/Zephyr-latest/subsys/bluetooth/audio/
DKconfig.vcp24 This option sets the number of instances of Volume Offset Control
39 This option sets the number of instances of Audio Input Control
70 int "Maximum number of VOCS instances to setup"
75 instances to setup and use.
85 int "Maximum number of AICS instances to setup"
90 instances to setup and use.
DKconfig.micp27 This option sets the number of instances of Audio Input Control
53 int "Maximum number of Audio Input Control Service instances to setup"
58 instances to setup and use.
DKconfig.vocs15 This option sets the maximum number of instances of Volume Offset
42 This option sets the maximum number of instances of Volume Offset
DKconfig.aics16 This option sets the maximum number of instances of Audio Input
44 This option sets the maximum number of instances of Audio Input
DKconfig.csip42 This option sets the maximum number of instances of Coordinated Set
47 instances.
84 Sets the number of service instances, which corresponds to the number
/Zephyr-latest/subsys/fs/fcb/
DKconfig21 bool "Allow FCB instances to have a fixed endmarker"
23 This allows the FCB instances to disable CRC checks in
/Zephyr-latest/tests/drivers/spi/spi_controller_peripheral/
DREADME.txt1 In this test suite two instances of the SPI peripheral are connected together.
3 In each test, both instances get identical configuration (CPOL, CPHA, bitrate, etc.).
/Zephyr-latest/include/zephyr/portability/
Dcmsis_os.h169 uint32_t instances; ///< maximum number of instances of that thread function member
286 #define osThreadDef(name, priority, instances, stacksz) \ argument
289 #define osThreadDef(name, priority, instances, stacksz) \ argument
290 static K_THREAD_STACK_ARRAY_DEFINE(stacks_##name, instances, CONFIG_CMSIS_THREAD_MAX_STACK_SIZE); \
291 static struct k_thread cm_thread_##name[instances]; \
294 SYS_BITARRAY_DEFINE_STATIC(bitarray_##name, instances); \
296 { (name), (priority), (instances), (stacksz), (void *)(stacks_##name), \
/Zephyr-latest/subsys/ipc/ipc_service/backends/
DKconfig.icbmsg23 backend. The number of endpoints are applied to all the instances,
24 so this value should be maximum number among all the instances.
DKconfig.rpmsg13 work queue. Size is the same for all instances.
20 able to correctly setup instances and endpoints at init time.
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dtestplan.py120 self.instances = dict()
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())
263 self.selected_platforms = set(p.platform.name for p in self.instances.values())
294 self.instances = OrderedDict(sorted(self.instances.items(),
297 self.instances = OrderedDict(sorted(self.instances.items()))
306 temp_list = list(self.instances.items())
308 self.instances = OrderedDict(temp_list)
314 to_run = {k : v for k,v in self.instances.items() if v.status == TwisterStatus.NONE}
331 skipped = {k : v for k,v in self.instances.items() if v.status == TwisterStatus.SKIP}
[all …]
/Zephyr-latest/doc/connectivity/bluetooth/api/
Dl2cap.rst11 Channels instances are represented by the :c:struct:`bt_l2cap_chan` struct which
32 allocate channel instances.
36 Note that the later can also disconnect channel instances created by servers.
/Zephyr-latest/soc/st/stm32/stm32g0x/
DKconfig.defconfig15 # LPUART1 - USART3/4/5/6 instances are all enabled
17 # 4 out of 5 USART instances are enabled
23 # 3 out of 5 USART instances are enabled
/Zephyr-latest/subsys/usb/device/class/
DKconfig.template.composite_device_number11 Number of instances of this USB Device class.
/Zephyr-latest/modules/lvgl/
DKconfig.shell17 Number of monkey instances that can exist in parallel
/Zephyr-latest/scripts/tests/twister/
Dtest_testplan.py186 …nstances = list(filter(lambda item: item.status == TwisterStatus.FILTER, plan.instances.values()))
220 … list(filter(lambda item: item.status == TwisterStatus.FILTER, class_testplan.instances.values()))
251 … list(filter(lambda item: item.status == TwisterStatus.FILTER, class_testplan.instances.values()))
270 assert list(plan.instances.keys()) == \
272 assert all(isinstance(n, TestInstance) for n in list(plan.instances.values()))
273 assert list(plan.instances.values()) == instance_list
340 for testname, instance in class_testplan.instances.items():
396 filter(lambda item: item.status == TwisterStatus.FILTER, plan.instances.values())
824 testplan.instances = {
837 assert [instance for instance in testplan.instances.keys()] == \
[all …]
/Zephyr-latest/subsys/modbus/
DKconfig63 int "Number of raw ADU instances"
67 Number of raw ADU instances.
/Zephyr-latest/drivers/dma/
DKconfig.dw_common39 Some instances of the DesignWare DMAC require a mask applied to source/destination
46 Channel count for designware DMA instances.
/Zephyr-latest/drivers/can/
DKconfig.mcux32 int "Maximum number of message buffers for concurrent active instances"
40 Defines maximum number of message buffers for concurrent active instances.
/Zephyr-latest/drivers/adc/
DKconfig.esp3219 Enable the ADC DMA mode for ADC instances

12345678