Searched refs:initialized (Results 76 – 100 of 262) sorted by relevance
1234567891011
/Zephyr-latest/subsys/usb/device_next/ |
D | usbd_device.c | 246 uds_ctx->status.initialized = true; in usbd_init() 335 uds_ctx->status.initialized = false; in usbd_shutdown()
|
/Zephyr-latest/samples/boards/nordic/dynamic_pinctrl/ |
D | README.rst | 20 system is initialized. 29 associated pins has not been initialized yet. Therefore, pay attention to the
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | fifos.rst | 25 A FIFO must be initialized before it can be used. This sets its queue to empty. 72 It must then be initialized by calling :c:func:`k_fifo_init`. 82 Alternatively, an empty FIFO can be defined and initialized at compile time
|
D | message_queues.rst | 28 A message queue must be initialized before it can be used. 74 It must then be initialized by calling :c:func:`k_msgq_init`. 92 Alternatively, a message queue can be defined and initialized at compile time
|
/Zephyr-latest/cmake/linker_script/common/ |
D | common-ram.cmake | 34 # initialized at build time, or initialized automatically at runtime
|
/Zephyr-latest/samples/boards/nxp/s32/netc/ |
D | README.rst | 49 [00:00:00.058,000] <inf> shell_telnet: Telnet shell backend initialized 74 [00:00:00.058,000] <inf> shell_telnet: Telnet shell backend initialized
|
/Zephyr-latest/doc/kernel/usermode/ |
D | kernelobjects.rst | 170 in an initialized state. If the caller is from user mode, the caller must 203 Some objects will be implicitly initialized at boot: 206 (such as :c:macro:`K_SEM_DEFINE` for semaphores) will be in an initialized 209 * Device driver objects are considered initialized after their init function 212 If a kernel object is initialized with a private static initializer, the object 216 are embedded within some larger struct and initialized statically.
|
/Zephyr-latest/samples/bluetooth/iso_central/ |
D | README.rst | 33 Bluetooth initialized
|
/Zephyr-latest/doc/kernel/services/synchronization/ |
D | mutexes.rst | 30 A mutex must be initialized before it can be used. This sets its lock count 98 It must then be initialized by calling :c:func:`k_mutex_init`. 108 Alternatively, a mutex can be defined and initialized at compile time
|
/Zephyr-latest/doc/kernel/services/timing/ |
D | timers.rst | 26 may be initialized via different units. 47 A timer must be initialized before it can be used. This specifies its 107 It must then be initialized by calling :c:func:`k_timer_init`. 118 Alternatively, a timer can be defined and initialized at compile time
|
/Zephyr-latest/boards/qemu/x86/ |
D | Kconfig.defconfig | 6 # The EEPROM emulator must be initialized after the flash simulator
|
/Zephyr-latest/tests/subsys/edac/ibecc/ |
D | README.rst | 65 Test ibecc driver is initialized
|
/Zephyr-latest/samples/bluetooth/iso_peripheral/ |
D | README.rst | 31 Bluetooth initialized
|
/Zephyr-latest/subsys/net/lib/config/ |
D | Kconfig | 31 initialized when the device is started. If you do not wish to do 45 This option makes sure the network application is initialized properly 61 This option makes sure the network application is initialized properly
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | ring_buffers.rst | 26 buffer initialized with a byte count must be used only with the 27 "bytes" API, one initialized with a word count must use the "items" 51 A ring buffer must be initialized before it can be used. This sets its 55 memory, and must be initialized with :c:func:`ring_buf_init` or 202 It must then be initialized by calling :c:func:`ring_buf_init` or 225 Alternatively, a ring buffer can be defined and initialized at compile time
|
D | dlist.rst | 15 accessible memory. It must be initialized with :c:func:`sys_dlist_init` 19 above). It must be initialized in zeroed/bss memory or with
|
/Zephyr-latest/doc/services/storage/disk/ |
D | access.rst | 67 at 24 MHz once the SD card has been initialized: 88 The SD card will be automatically detected and initialized by the
|
/Zephyr-latest/samples/bluetooth/iso_connected_benchmark/ |
D | README.rst | 64 [00:00:00.405,395] <inf> iso_connected: Bluetooth initialized 96 [00:00:00.472,961] <inf> iso_connected: Bluetooth initialized
|
/Zephyr-latest/doc/services/task_wdt/ |
D | index.rst | 11 malfunctions. Once initialized, the watchdog timer has to be restarted ("fed")
|
/Zephyr-latest/doc/services/debugging/ |
D | mipi_stp_decoder.rst | 22 Decoder is initialized with a callback. A callback is called on each decoded opcode.
|
/Zephyr-latest/subsys/usb/usb_c/ |
D | Kconfig | 22 This driver must be initialized after devices referenced by USB-C connectors
|
/Zephyr-latest/subsys/ipc/rpmsg_service/ |
D | Kconfig | 75 The endpoints must be registered before RPMsg Service is initialized.
|
/Zephyr-latest/doc/services/modem/ |
D | index.rst | 28 structure when initialized, which will be used to interact with the
|
/Zephyr-latest/doc/kernel/services/threads/ |
D | workqueue.rst | 31 A workqueue must be initialized before it can be used. This sets its queue to 71 A work item must be initialized before it can be used. This records the work 113 A work item is typically initialized once and then submitted to a specific 126 by the workqueue thread. This means a work item must not be re-initialized 144 A delayable work item is initialized and scheduled to a workqueue in a similar 184 A triggered work item is initialized and submitted to a workqueue in a similar 225 The workqueue is initialized by defining the stack area used by its 271 be initialized by calling :c:func:`k_work_init`, unless it is defined using 275 An initialized work item can be submitted to the system workqueue by 341 :c:struct:`k_work_delayable`. It must be initialized by calling
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | micp_mic_ctlr.c | 555 static bool initialized; in bt_micp_mic_ctlr_discover() local 557 if (!initialized) { in bt_micp_mic_ctlr_discover() 584 initialized = true; in bt_micp_mic_ctlr_discover()
|
1234567891011