Home
last modified time | relevance | path

Searched full:system (Results 1 – 25 of 2211) sorted by relevance

12345678910>>...89

/Zephyr-latest/subsys/fs/
DKconfig8 bool "Link file system libraries into build"
10 Link in the underlying file system libraries. This can be
12 to work directly with the underlying file system libraries.
18 bool "File system support"
21 Enables support for file system.
38 int "Maximum number of distinct file system types allowed"
41 Zephyr provides several file system types including FatFS and
50 system types. Zero or a negative value selects the maximum
53 file system. Selecting a value less than the actual length
54 supported by a file system may result in memory access
[all …]
/Zephyr-latest/samples/boards/nordic/system_off/
Dsample.yaml23 - "system off demo"
25 - "Entering system off; press sw0 to restart"
43 - "system off demo"
48 - "Entering system off; press sw0 to restart"
63 - "system off demo"
65 - "Entering system off; wait 2 seconds to restart"
66 - "system off demo"
68 - "Entering system off; wait 2 seconds to restart"
69 - "system off demo"
71 - "Entering system off; wait 2 seconds to restart"
[all …]
DKconfig7 bool "Use state retention in system off using retained_mem driver"
11 bool "Use button to wake up device from system off"
14 Enable system off wakeup from pressing sw0 button.
17 bool "Use GRTC to wake up device from system off"
19 Enable system off wakeup from GRTC.
22 bool "Use COMP to wake up device from system off"
24 Enable system off wakeup from analog comparator.
/Zephyr-latest/doc/services/file_system/
Dindex.rst9 to instantiate, mount, and operate on a file system. The File system Switch
10 decouples the applications from directly accessing an individual file system's
11 specific API or internal functions by introducing file system registration
14 In Zephyr, any file system implementation or library can be plugged into or
15 pulled out through a file system registration API. Each file system
25 Zephyr RTOS supports multiple instances of a file system by making use of
26 the mount point as the disk volume name, which is used by the file system library
29 A file system is declared as:
41 - ``FS_FATFS`` is the file system type like FATFS or LittleFS.
42 - ``FATFS_MNTP`` is the mount point where the file system will be mounted.
[all …]
/Zephyr-latest/include/zephyr/
Dsyscall.h24 * System Call Declaration macros
26 * These macros are used in public header files to declare system calls.
37 * All system calls require a verifier function and an implementation
38 * function. These must follow a naming convention. For a system call
46 * z_impl_k_foo(). This is the actual implementation of the system
52 * @brief System call handler function type
54 * These are kernel-side skeleton functions for system calls. They are
55 * necessary to sanitize the arguments passed into the system call:
63 * - If the system call has more than 6 arguments, then arg6 will be a pointer
69 * Even if the system call implementation has no return value, these always
[all …]
/Zephyr-latest/dts/bindings/fs/
Dzephyr,fstab-common.yaml13 The absolute path used as the file system mount point.
19 A reference to the file system's partition.
24 Mount file system on boot if present.
26 During initialization the file system driver will attempt to mount
32 Mount file system read-only if present.
35 mount descriptor generated for the file system.
40 Do not format file system if mount fails.
43 mount descriptor generated for the file system.
51 the mount descriptor generated for the file system.
/Zephyr-latest/drivers/timer/
DKconfig.nrf_xrtc14 System clock source is initiated but does not wait for clock readiness.
15 When this option is picked, system clock may not be ready when code relying
22 System clock source initialization waits until clock is available. In some
25 it is ready. When this option is picked, system clock is available after
26 system clock driver initialization but it may be less accurate. Option is
33 System clock source initialization waits until clock is stable. When this
34 option is picked, system clock is available and stable after system clock
/Zephyr-latest/boards/arduino/nano_33_ble/support/
Dstartup.cmm32 ; process system-wide settings
34 IF OS.FILE("~~/system-settings.cmm")
35 DO "~~/system-settings.cmm"
40 SYStem.Down
41 IF PRACTICE.CoMmanD.AVAILable(SYStem.CPU.NANO33BLE)
42 SYStem.CPU NANO33BLE
44 SYStem.CPU NRF52840QI
77 IF !SYStem.Up()
79 SYStem.PORT &gdbRemote
81 SYStem.Option MMUSPACES ON
[all …]
/Zephyr-latest/modules/trusted-firmware-m/
DKconfig.tfm.partitions16 to be passed to the TF-M build system. Look at 'config_default.cmake'
19 options are handled by the build system in the trusted-firmware-m
27 to be passed to the TF-M build system. Look at 'config_default.cmake'
30 options are handled by the build system in the trusted-firmware-m
38 to be passed to the TF-M build system. Look at 'config_default.cmake'
41 options are handled by the build system in the trusted-firmware-m
50 to be passed to the TF-M build system. Look at 'config_default.cmake'
53 options are handled by the build system in the trusted-firmware-m
61 to be passed to the TF-M build system. Look at 'config_default.cmake'
64 options are handled by the build system in the trusted-firmware-m
[all …]
/Zephyr-latest/include/zephyr/fs/
Dfs.h21 * @brief File System APIs
22 * @defgroup file_system_api File System APIs
40 /** @brief Enumeration to uniquely identify file system types.
43 * requires a unique identifier used to register the file system
44 * implementation and to associate a mount point with the file system
51 * identifiers are unique if multiple file system implementations are
55 /** Identifier for in-tree FatFS file system. */
58 /** Identifier for in-tree LittleFS file system. */
61 /** Identifier for in-tree Ext2 file system. */
68 /** Flag prevents formatting device if requested file system not found */
[all …]
Dnvs.h37 * @brief Non-volatile Storage File system structure
40 /** File system offset in flash **/
50 /** File system is split into sectors, each sector must be multiple of erase-block-size */
52 /** Number of sectors in the file system */
54 /** Flag indicating if the file system is initialized */
79 * @brief Mount an NVS file system onto the flash device specified in @p fs.
81 * @param fs Pointer to file system
88 * @brief Clear the NVS file system from flash.
90 * @param fs Pointer to file system
97 * @brief Write an entry to the file system.
[all …]
Dzms.h33 /** Zephyr Memory Storage file system structure */
35 /** File system offset in flash */
45 /** Storage system is split into sectors. The sector size must be a multiple of
49 /** Number of sectors in the file system */
53 /** Flag indicating if the file system is initialized */
80 * @brief Mount a ZMS file system onto the device specified in `fs`.
82 * @param fs Pointer to the file system.
89 * @brief Clear the ZMS file system from device.
91 * @param fs Pointer to the file system.
98 * @brief Write an entry to the file system.
[all …]
/Zephyr-latest/doc/services/portability/posix/aep/
Dindex.rst7 subprofiling options of `IEEE 1003.1-2017`_. The single-purpose realtime system profiles
11 System Interfaces
14 The required POSIX :ref:`System Interfaces<posix_system_interfaces_required>` are supported for
20 :alt: Required System Interfaces
22 System Interfaces
26 Minimal Realtime System Profile (PSE51)
29 The *Minimal Realtime System Profile* (PSE51) includes all of the
30 :ref:`System Interfaces<posix_system_interfaces_required>` along with several additional features.
35 :alt: Minimal Realtime System Profile (PSE51)
37 Minimal Realtime System Profile (PSE51)
[all …]
/Zephyr-latest/tests/posix/xsi_system_logging/
Dtestcase.yaml4 - xsi.system.logging
12 portability.xsi.system.logging: {}
13 portability.xsi.system.logging.minimal:
16 portability.xsi.system.logging.newlib:
20 portability.xsi.system.logging.picolibc:
/Zephyr-latest/doc/
Dglossary.rst16 The set of user-supplied files that the Zephyr build system uses
20 The application's kernel configuration settings direct the build system
34 of the system, initializes it, and runs as the system's sole application.
42 A target system with a defined set of devices and capabilities,
44 hardware system or a simulated system running under QEMU. A board can
51 The Zephyr build system defines one or more board configurations
53 specified by the build system can be over-ridden by the application,
58 identifies a particular system, but does not include additional
71 hardware system. This is useful to avoid duplication of board files
72 whenever small changes are introduced to a hardware system.
[all …]
/Zephyr-latest/drivers/syscon/
DKconfig10 bool "System Controller (SYSCON) drivers"
12 SYSCON (System Controller) drivers. System controller node represents
26 bool "Generic SYSCON (System Controller) driver"
30 Enable generic SYSCON (System Controller) driver
33 int "SYSCON (System Controller) driver init priority"
/Zephyr-latest/doc/kernel/services/threads/
Dsystem_threads.rst3 System Threads
10 A :dfn:`system thread` is a thread that the kernel spawns automatically
11 during system initialization.
13 The kernel spawns the following system threads:
26 this means a fatal system error is raised if the thread aborts. If
31 This thread executes when there is no other work for the system to do.
34 loop. The idle thread remains in existence as long as the system is running
42 The idle thread is an essential thread, which means a fatal system error
45 Additional system threads may also be spawned, depending on the kernel
47 enabling the system workqueue spawns a system thread
/Zephyr-latest/subsys/pm/
DKconfig14 bool "System Power Management"
27 module-str = System Power Management
31 bool "System Power Management Stats"
34 Enable System Power Management Stats.
50 bool "System Low Power Mode Needs All Devices Idle"
54 entering into system low power mode.
102 usage even while the CPU or system is running.
106 bool "[DEPRECATED] Use only on Runtime Power Management on system suspend / resume"
109 On system suspend / resume do not trigger the Device PM hooks but
120 bool "System-Managed Device Power Management"
[all …]
/Zephyr-latest/subsys/logging/backends/
DKconfig.fs5 bool "File system backend"
9 When enabled, backend is using the configured file system to output logs.
10 As the file system must be mounted for the logging to work, it must be
12 Log messages are discarded as long as the file system is not mounted.
24 When enabled automatically start the file system backend on
46 User defined name of log files saved in the file system.
67 size of file system partition.
/Zephyr-latest/samples/subsys/usb/mass/
DKconfig9 Use this to force an existing file system to be created.
12 prompt "Storage and file system type used by the application"
15 Specify the type of storage and file system.
21 bool "Use RAM disk and FAT file system"
26 bool "Use FLASH disk and FAT file system"
38 bool "Use SDHC and FAT file system"
/Zephyr-latest/include/zephyr/sys/
Dpoweroff.h17 * @defgroup sys_poweroff System power off
25 * @brief System power off hook.
28 * perform an immediate power off of the system.
35 * @brief Perform a system power off.
37 * This function will perform an immediate power off of the system. It is the
38 * responsibility of the caller to ensure that the system is in a safe state to
/Zephyr-latest/include/zephyr/arch/common/
Dpm_s2ram.h26 * @brief System off function
29 * to power the system off after the CPU context has been saved.
31 * This function never returns if the system is powered off. If the operation
33 * of restoring the system in a fully operational state before returning.
35 * @retval none The system is powered off.
36 * @retval -EBUSY The system is busy and cannot be powered off at this time.
45 * (retained) RAM before powering the system off using the provided function.
52 * @param system_off Function to power off the system.
55 * @retval -EBUSY The system is busy and cannot be suspended at this time.
63 * Function is called when system state is stored to RAM, just before going to system
/Zephyr-latest/samples/subsys/fs/littlefs/
DREADME.rst5 Use file system API over LittleFS.
10 This sample app demonstrates use of Zephyr's :ref:`file system API
11 <file_system_api>` over `littlefs`_, using file system with files that:
12 * count the number of times the system has booted
15 Other information about the file system is also displayed.
26 The partition labeled "storage" will be used for the file system; see
28 compatible littlefs file system its contents will be replaced by an
29 empty file system. You will see diagnostics like this::
35 The error and warning are normal for a new file system.
37 After the file system is mounted you'll also see::
[all …]
/Zephyr-latest/dts/bindings/timer/
Dnuclei,systimer.yaml5 Nuclei System Timer
7 The Nuclei system timer provides RISC-V privileged mtime and mtimecmp
25 clock used by the system timer.
26 This property supports the case that the system timer and CPU use
30 For example, the CPU clock frequency is 108MHz, and the system timer
44 Setting clk-divider to 2 specifies the system timer uses the clock
/Zephyr-latest/scripts/west_commands/tests/
Dtest_stm32cubeprogrammer.py19 """Home path (used for Linux system CLI path)."""
22 """Program files x86 path (used for Windows system CLI path)."""
27 """Environment (used for Windows system CLI path)."""
74 "system": "",
98 "system": "",
123 "system": "",
147 "system": "",
171 "system": "",
195 "system": "",
219 "system": "",
[all …]

12345678910>>...89