| /Zephyr-latest/boards/nxp/rddrone_fmuk66/ |
| D | rddrone_fmuk66-pinctrl.dtsi | 16 drive-strength = "low"; 23 drive-strength = "low"; 37 drive-strength = "low"; 46 drive-strength = "low"; 55 drive-strength = "low"; 66 drive-strength = "low"; 79 drive-strength = "low"; 87 drive-strength = "low"; 92 drive-strength = "low"; 101 drive-strength = "low"; [all …]
|
| /Zephyr-latest/boards/nxp/frdm_k64f/ |
| D | frdm_k64f-pinctrl.dtsi | 16 drive-strength = "low"; 24 drive-strength = "low"; 38 drive-strength = "low"; 46 drive-strength = "low"; 53 drive-strength = "low"; 63 drive-strength = "low"; 71 drive-strength = "low"; 77 drive-strength = "low"; 85 drive-strength = "low"; 94 drive-strength = "low"; [all …]
|
| /Zephyr-latest/samples/boards/microchip/mec172xevb_assy6906/qmspi_ldma/ |
| D | mec172xevb_assy6906.overlay | 13 low-power-enable; 17 low-power-enable; 21 low-power-enable; 25 low-power-enable; 29 low-power-enable; 33 low-power-enable; 38 low-power-enable; 42 low-power-enable; 46 low-power-enable; 50 low-power-enable; [all …]
|
| /Zephyr-latest/boards/nxp/frdm_mcxn947/ |
| D | frdm_mcxn947-pinctrl.dtsi | 17 drive-strength = "low"; 27 drive-strength = "low"; 39 drive-strength = "low"; 51 drive-strength = "low"; 61 drive-strength = "low"; 75 drive-strength = "low"; 82 drive-strength = "low"; 90 drive-strength = "low"; 125 drive-strength = "low"; 137 drive-strength = "low"; [all …]
|
| /Zephyr-latest/boards/nxp/twr_ke18f/ |
| D | twr_ke18f-pinctrl.dtsi | 18 drive-strength = "low"; 26 drive-strength = "low"; 35 drive-strength = "low"; 44 drive-strength = "low"; 54 drive-strength = "low"; 65 drive-strength = "low"; 74 drive-strength = "low"; 83 drive-strength = "low"; 93 drive-strength = "low"; 105 drive-strength = "low"; [all …]
|
| /Zephyr-latest/boards/nxp/frdm_mcxn236/ |
| D | frdm_mcxn236-pinctrl.dtsi | 15 drive-strength = "low"; 25 drive-strength = "low"; 39 drive-strength = "low"; 49 drive-strength = "low"; 59 drive-strength = "low"; 71 drive-strength = "low"; 80 drive-strength = "low"; 89 drive-strength = "low"; 100 drive-strength = "low"; 107 drive-strength = "low"; [all …]
|
| /Zephyr-latest/boards/nxp/ucans32k1sic/ |
| D | ucans32k1sic-pinctrl.dtsi | 13 drive-strength = "low"; 20 drive-strength = "low"; 27 drive-strength = "low"; 37 drive-strength = "low"; 46 drive-strength = "low"; 53 drive-strength = "low"; 60 drive-strength = "low"; 67 drive-strength = "low"; 74 drive-strength = "low";
|
| /Zephyr-latest/boards/nxp/frdm_mcxa156/ |
| D | frdm_mcxa156-pinctrl.dtsi | 14 drive-strength = "low"; 23 drive-strength = "low"; 31 drive-strength = "low"; 40 drive-strength = "low"; 66 drive-strength = "low"; 72 drive-strength = "low"; 79 drive-strength = "low"; 89 drive-strength = "low"; 97 drive-strength = "low"; 103 drive-strength = "low"; [all …]
|
| /Zephyr-latest/drivers/timer/ |
| D | Kconfig.cortex_m_systick | 47 prompt "SysTick companion low-power mode timer" 55 However, depending on the SoC implementation, entering low-power mode 58 On such SoCs, a vendor-specific timer that remains active in low-power 60 system timer, for example because its frequency is too low. 63 the SysTick driver to ensure proper system operation in low-power mode. 66 low-power mode, no LPM timer can be selected if PM is not enabled. 68 prevent the system from entering in low-power modes. 73 Use no additional device as low-power mode timer. 75 The SoC must never enter a low-power mode where SysTick is disabled when 85 Use a device that implements the counter API as low-power mode timer. [all …]
|
| D | cortex_m_systick.h | 14 * SysTick driver and a platform-specific low-power timer driver. 18 * the system enters a low-power mode. 20 * In the rest of this file, the "platform-specific low-power mode timer" 29 * (2) The system enters in low-power mode 30 * (3) The system exits low-power mode (due to timeout or HW event) 39 * NOTE: the hooks are not invoked when the system enters in low-power 45 * @brief Hook invoked when the system is about to enter low-power mode 47 * @param max_lpm_time_us Maximal time allowed in low-power mode (µs) 54 * Note that this hook is not called if the system enters low-power 61 * @brief Callback invoked after system exits low-power mode [all …]
|
| /Zephyr-latest/soc/nuvoton/npcx/common/ |
| D | soc_pins.h | 32 * @brief NPCX low-voltage configuration structure 35 * low-voltage detection. 38 uint8_t ctrl:5; /** Related register index for low-voltage conf. */ 39 uint8_t bit:3; /** Related register bit for low-voltage conf. */ 51 * @brief Force the internal SPI flash write-protect pin (WP) to low level to 64 * @brief Enable low-voltage input detection 66 * @param lvol_ctrl Related register index for low-voltage detection 67 * @param lvol_bit Related register bit for low-voltage detection 68 * @param enable True to enable low-voltage input detection, false to disable. 73 * @brief Get status of low-voltage input detection [all …]
|
| /Zephyr-latest/drivers/sensor/ntc_thermistor/ |
| D | ntc_thermistor_calc.c | 40 int low = 0; in ntc_lookup_comp() local 43 if (ohm > type->comp[low].ohm) { in ntc_lookup_comp() 44 high = low; in ntc_lookup_comp() 46 low = high; in ntc_lookup_comp() 49 while (high - low > 1) { in ntc_lookup_comp() 50 int mid = (low + high) / 2; in ntc_lookup_comp() 55 low = mid; in ntc_lookup_comp() 59 *i_low = low; in ntc_lookup_comp() 87 int low, high; in ntc_get_temp_mc() local 90 ntc_lookup_comp(type, ohm, &low, &high); in ntc_get_temp_mc() [all …]
|
| /Zephyr-latest/include/zephyr/drivers/sensor/ |
| D | icm42x70.h | 31 * Low-Noise Mode and Low-Power Mode options are available for the 32 * accelerometer. Only Low-Noise Mode is available for gyroscope. 33 * In Low-Noise Mode, the ADC output is sent through an Anti-Alias Filter 35 * also the AAF cannot be bypassed. The AAF is followed by a 1st Order Low Pass 37 * In Low-Power Mode, the accelerometer ADC output is sent through an Average 39 * The output of 1st Order LPF in Low-Noise Mode, or Average filter in Low-Power 45 /** Low-pass filter configuration */
|
| /Zephyr-latest/boards/nxp/mcxw72_evk/ |
| D | mcxw72_evk-pinctrl.dtsi | 12 drive-strength = "low"; 20 drive-strength = "low"; 29 drive-strength = "low"; 41 drive-strength = "low"; 49 drive-strength = "low"; 58 drive-strength = "low"; 67 drive-strength = "low"; 77 drive-strength = "low";
|
| /Zephyr-latest/boards/nxp/frdm_mcxw72/ |
| D | frdm_mcxw72-pinctrl.dtsi | 12 drive-strength = "low"; 20 drive-strength = "low"; 29 drive-strength = "low"; 39 drive-strength = "low"; 47 drive-strength = "low"; 56 drive-strength = "low"; 65 drive-strength = "low"; 75 drive-strength = "low";
|
| /Zephyr-latest/boards/nxp/frdm_ke17z512/ |
| D | frdm_ke17z512-pinctrl.dtsi | 14 drive-strength = "low"; 24 drive-strength = "low"; 34 drive-strength = "low"; 44 drive-strength = "low"; 54 drive-strength = "low"; 63 drive-strength = "low"; 75 drive-strength = "low"; 84 drive-strength = "low";
|
| /Zephyr-latest/boards/nxp/frdm_mcxw71/ |
| D | frdm_mcxw71-pinctrl.dtsi | 12 drive-strength = "low"; 20 drive-strength = "low"; 30 drive-strength = "low"; 39 drive-strength = "low"; 49 drive-strength = "low"; 62 drive-strength = "low"; 70 drive-strength = "low"; 79 drive-strength = "low";
|
| /Zephyr-latest/dts/bindings/sensor/ |
| D | we,wsen-pads-2511020213301-common.yaml | 37 Configuration of sensor to either be low power or low noise. 38 Maximum ODR in Low Noise configuration is 75Hz. 41 additional-low-pass-filter: 44 Enable or disable the additional low pass filter of the sensor. 46 additional-low-pass-filter-configuration: 53 Configuration of the additional low pass filter of the sensor.
|
| /Zephyr-latest/boards/nxp/frdm_kw41z/ |
| D | frdm_kw41z-pinctrl.dtsi | 16 drive-strength = "low"; 25 drive-strength = "low"; 33 drive-strength = "low"; 38 drive-strength = "low"; 49 drive-strength = "low"; 58 drive-strength = "low"; 66 drive-strength = "low";
|
| /Zephyr-latest/boards/nxp/frdm_mcxc242/ |
| D | frdm_mcxc242-pinctrl.dtsi | 15 drive-strength = "low"; 23 drive-strength = "low"; 31 drive-strength = "low"; 39 drive-strength = "low"; 48 drive-strength = "low"; 56 drive-strength = "low"; 64 drive-strength = "low";
|
| /Zephyr-latest/boards/nxp/frdm_k82f/ |
| D | frdm_k82f-pinctrl.dtsi | 16 drive-strength = "low"; 26 drive-strength = "low"; 35 drive-strength = "low"; 45 drive-strength = "low"; 56 drive-strength = "low"; 65 drive-strength = "low"; 76 drive-strength = "low"; 87 drive-strength = "low";
|
| /Zephyr-latest/dts/bindings/i2c/ |
| D | atmel,sam-i2c-twim.yaml | 21 std-clk-strength-low = "0.5"; 23 std-data-strength-low = "0.5"; 27 hs-clk-strength-low = "0.5"; 29 hs-data-strength-low = "0.5"; 59 std-clk-strength-low to fine tune the TWCK slope. 66 std-clk-strength-low: 73 low level. 89 std-data-strength-low to fine tune the TWD slope. 96 std-data-strength-low: 103 low level. [all …]
|
| /Zephyr-latest/tests/arch/arc/arc_dsp_sharing/ |
| D | README.txt | 25 Load and store OK after 0 (high) + 84 (low) tests 26 Load and store OK after 100 (high) + 11926 (low) tests 27 Load and store OK after 200 (high) + 23767 (low) tests 28 Load and store OK after 300 (high) + 35607 (low) tests 29 Load and store OK after 400 (high) + 47448 (low) tests 30 Load and store OK after 500 (high) + 59287 (low) tests 34 complex product calculation OK after 50 (high) + 63297 (low) tests (computed -160) 35 complex product calculation OK after 150 (high) + 188138 (low) tests (computed -160) 36 complex product calculation OK after 250 (high) + 312972 (low) tests (computed -160) 37 complex product calculation OK after 350 (high) + 437806 (low) tests (computed -160) [all …]
|
| /Zephyr-latest/boards/nxp/frdm_k22f/ |
| D | frdm_k22f-pinctrl.dtsi | 17 drive-strength = "low"; 23 drive-strength = "low"; 32 drive-strength = "low"; 44 drive-strength = "low"; 53 drive-strength = "low"; 62 drive-strength = "low";
|
| /Zephyr-latest/boards/nxp/frdm_ke17z/ |
| D | frdm_ke17z-pinctrl.dtsi | 14 drive-strength = "low"; 23 drive-strength = "low"; 33 drive-strength = "low"; 43 drive-strength = "low"; 52 drive-strength = "low"; 64 drive-strength = "low";
|