Home
last modified time | relevance | path

Searched full:values (Results 1 – 25 of 814) sorted by relevance

12345678910>>...33

/Zephyr-Core-2.7.6/drivers/clock_control/
DKconfig.stm32l4_l5_wb_wl16 L4: allowed values: 1-8. PLL VCO input ranges from 4 to 16MHz
17 L5: allowed values: 1-16. PLL VCO input ranges from 4 to 16MHz
18 WB: allowed values: 1-8. PLL VCO input ranges from 2.66 to 16MHz
19 WL: allowed values: 1-8. PLL VCO input ranges from 2.66 to 16MHz
29 L4: allowed values: 8-86. PLL VCO output ranges from 64 to 334MHz
30 L5: allowed values: 8-86. PLL VCO output ranges from 64 to 334MHz
31 WB: allowed values: 6-127. PLL VCO output ranges from 96 to 334MHz
32 WL: allowed values: 6-127. PLL VCO output ranges from 96 to 334MHz
42 L4: allowed values: 0, 7, 17. PLLP do not exceed 80MHz
43 L5: allowed values: 0, 7, 17. PLLP do not exceed 80MHz
[all …]
DKconfig.stm32h717 allowed values: 1, 2, 4, 8
27 allowed values: 1, 2, 4, 8, 16, 64, 128, 256, 512.
34 hclk prescaler, allowed values: 1, 2, 4, 8, 16, 64, 128, 256, 512.
41 APB1 clock (rcc_pclk1) prescaler, allowed values: 1, 2, 4, 8, 16
48 APB2 clock (rcc_pclk2) prescaler, allowed values: 1, 2, 4, 8, 16
55 APB3 clock (rcc_pclk3) prescaler, allowed values: 1, 2, 4, 8, 16
62 APB4 clock (rcc_pclk4) prescaler, allowed values: 1, 2, 4, 8, 16
73 PLL divisor, allowed values: 0-63.
81 PLL multiplier, allowed values: 4-512.
89 PLL P Output divisor, allowed values: 1-128.
[all …]
DKconfig.stm32g014 PLL multiplier, allowed values: 8-86
23 PLL divisor, allowed values: 1-8.
31 PLL P VCO divisor, allowed values: 2-32.
40 PLL Q VCO divisor, allowed values: 2-8.
49 PLL R VCO divisor, allowed values: 2-8.
DKconfig.stm32g414 PLL divisor, allowed values: 1-16.
22 PLL multiplier, allowed values: 8-127.
30 PLL P Output divisor, allowed values: 7, 17.
38 PLL Q Output divisor, allowed values: 2, 4, 6, 8.
46 PLL R Output divisor, allowed values: 2, 4, 6, 8.
DKconfig.stm32f2_f4_f717 Allowed values: 2-63
29 Allowed values: 50-432 (STM32F401: 192-432)
38 Allowed values: 2, 4, 6, 8
48 Allowed values: 2-15
DKconfig.stm32169 AHB prescaler, allowed values: 1, 2, 4, 8, 16, 64, 128,
177 APB1 Low speed clock (PCLK1) prescaler, allowed values:
186 APB2 High speed clock (PCLK2) prescaler, allowed values:
195 CPU1 HCLK prescaler, allowed values: 1, 2, 3, 4, 5, 6, 8, 10, 16, 32,
204 CPU2 HCLK prescaler, allowed values: 1, 2, 3, 4, 5, 6, 8, 10, 16, 32,
213 HCLK4 prescaler, allowed values: 1, 2, 3, 4, 5, 6, 8, 10, 16, 32,
222 HCLK4 prescaler, allowed values: 1, 2, 3, 4, 5, 6, 8, 10, 16, 32,
272 allowed values: 1, 2, 3, 4, 5
315 allowed values: 1, 2, 3, 4, 5
DKconfig.stm32f0_f317 Allowed values: 1 - 16.
29 Allowed values: 1 - 16.
37 PLL multiplier, allowed values: 2-16.
/Zephyr-Core-2.7.6/drivers/pwm/
DKconfig.esp3237 GPIO number, allowed values: 0 - 19, 21 - 23, 25 - 27 and 32 - 39.
44 Timer source channel, allowed values: 0 - 4.
59 GPIO number, allowed values: 0 - 19, 21 - 23, 25 - 27 and 32 - 39.
66 Timer source channel, allowed values: 0 - 4.
81 GPIO number, allowed values: 0 - 19, 21 - 23, 25 - 27 and 32 - 39.
88 Timer source channel, allowed values: 0 - 4.
103 GPIO number, allowed values: 0 - 19, 21 - 23, 25 - 27 and 32 - 39.
110 Timer source channel, allowed values: 0 - 4.
125 GPIO number, allowed values: 0 - 19, 21 - 23, 25 - 27 and 32 - 39.
132 Timer source channel, allowed values: 0 - 4.
[all …]
/Zephyr-Core-2.7.6/samples/drivers/eeprom/src/
Dmain.c42 struct perisistant_values values; in main() local
52 rc = eeprom_read(eeprom, EERPOM_SAMPLE_OFFSET, &values, sizeof(values)); in main()
58 if (values.magic != EERPOM_SAMPLE_MAGIC) { in main()
59 values.magic = EERPOM_SAMPLE_MAGIC; in main()
60 values.boot_count = 0; in main()
63 values.boot_count++; in main()
64 printk("Device booted %d times.\n", values.boot_count); in main()
66 rc = eeprom_write(eeprom, EERPOM_SAMPLE_OFFSET, &values, sizeof(values)); in main()
/Zephyr-Core-2.7.6/include/drivers/gpio/
Dgpio_emul.h47 * @brief Modify the values of one or more emulated GPIO input @p pins
51 * @param values New values to assign to @p pins
57 gpio_port_value_t values);
64 * @param value New values to assign to @p pin
80 * @param values A pointer to where the value of @p pins will be stored
86 gpio_port_value_t *values);
100 gpio_port_value_t values; in gpio_emul_output_get() local
102 ret = gpio_emul_output_get_masked(port, BIT(pin), &values); in gpio_emul_output_get()
104 ret = (values & BIT(pin)) ? 1 : 0; in gpio_emul_output_get()
/Zephyr-Core-2.7.6/include/sys/
Dtime_units.h201 * print " * Converts time values in $hfrom to $hto.\n";
237 * Converts time values in milliseconds to hardware cycles.
251 * Converts time values in milliseconds to hardware cycles.
265 * Converts time values in milliseconds to hardware cycles.
279 * Converts time values in milliseconds to hardware cycles.
293 * Converts time values in milliseconds to hardware cycles.
307 * Converts time values in milliseconds to hardware cycles.
321 * Converts time values in milliseconds to ticks.
335 * Converts time values in milliseconds to ticks.
349 * Converts time values in milliseconds to ticks.
[all …]
/Zephyr-Core-2.7.6/dts/bindings/display/
Dilitek,ili9340.yaml35 Power control 1 (PWCTRL1) register values.
41 Power control 2 (PWCTRL2) register values.
47 VCOM control 1 (VMCTRL1) register values.
53 VCOM control 2 (VMCTRL2) register values.
75 Positive gamma correction (PGAMCTRL) register values.
97 Negative gamma correction (NGAMCTRL) register values.
Dilitek,ili9488.yaml28 Power control 1 (PWCTRL1) register values.
34 Power control 2 (PWCTRL2) register values.
40 VCOM control (VMCTRL) register values.
62 Positive gamma correction (PGAMCTRL) register values.
84 Negative gamma correction (NGAMCTRL) register values.
Dilitek,ili9341.yaml84 Power control 1 (PWCTRL1) register values.
90 Power control 2 (PWCTRL2) register values.
96 VCOM control 1 (VMCTRL1) register values.
102 VCOM control 2 (VMCTRL2) register values.
124 Positive gamma correction (PGAMCTRL) register values.
146 Negative gamma correction (NGAMCTRL) register values.
/Zephyr-Core-2.7.6/drivers/gpio/
Dgpio_emul.c87 /** Input values for each pin */
89 /** Output values for each pin */
178 * GPIO backend API (for setting input pin values)
183 gpio_port_value_t values, in gpio_emul_gen_interrupt_bits() argument
196 ++i, mask >>= 1, prev_values >>= 1, values >>= 1) { in gpio_emul_gen_interrupt_bits()
202 bit = ((values & 1) != 0); in gpio_emul_gen_interrupt_bits()
261 * @param prev_values Previous pin values
262 * @param values Current pin values
266 gpio_port_value_t values) in gpio_emul_pend_interrupt() argument
272 gpio_emul_gen_interrupt_bits(port, mask, prev_values, values, in gpio_emul_pend_interrupt()
[all …]
/Zephyr-Core-2.7.6/include/random/
Drand32.h50 * @brief Fill the destination buffer with random data values that should
53 * @note The random values returned are not considered cryptographically
54 * secure random number values.
64 * random data values.
66 * @note If the random values requested do not need to be cryptographically
/Zephyr-Core-2.7.6/subsys/random/
Drand32_timer.c27 * return different values.
37 * The non-random number generator returns values that are based off the
39 * different values.
53 * The non-random number generator returns values that are based off the
55 * different values.
/Zephyr-Core-2.7.6/dts/bindings/sensor/
Dst,iis2dlpc-common.yaml53 # All default values are selected to match the power-up values.
71 (X/Y/Z values range from 0x00 to 0x1F)
74 Threshold values for each axis are unsigned 5-bit corresponding
91 (values range from 0x0 to 0x3)
102 (values range from 0x0 to 0xF)
113 (values range from 0x0 to 0x3)
Dst,lis2dw12-common.yaml72 # All default values are selected to match the power-up values.
95 (X/Y/Z values range from 0x00 to 0x1F)
98 Threshold values for each axis are unsigned 5-bit corresponding
115 (values range from 0x0 to 0x3)
126 (values range from 0x0 to 0xF)
137 (values range from 0x0 to 0x3)
/Zephyr-Core-2.7.6/samples/boards/olimex_stm32_e407/ccm/
DREADME.rst18 values take up space in the FLASH image.
64 Checking initial variable values: ... PASSED
66 Initial variable values:
77 Variable values after writing:
94 values shown above.
110 Checking initial variable values: ... PASSED
112 Initial variable values:
123 Variable values after writing:
138 values from the last write. It is important to notice that this is not guaranteed,
/Zephyr-Core-2.7.6/doc/reference/peripherals/
Dsensor.rst29 Values subsection
33 representation avoids use of floating point values as they may not be
36 Fetching Values
58 The example assumes that the returned values have type :c:struct:`sensor_value`,
61 the :c:data:`temp` and :c:data:`press` values and use the other fields
75 In compliance with Zephyr's design goals, most of these values are
79 example, threshold values for interrupts. These values are configured via
/Zephyr-Core-2.7.6/doc/reference/kernel/data_passing/
Dstacks.rst8 to add and remove a limited number of integer data values.
22 * A **queue** of integer data values that have been added but not yet removed.
23 The queue is implemented using an array of stack_data_t values
28 * A **maximum quantity** of data values that can be queued in the array.
39 its maximum quantity of queued values. Adding a data value to a stack that is
65 up to ten word-sized data values.
80 that the macro defines both the stack and its array of data values.
129 Use a stack to store and retrieve integer data values in a "last in,
/Zephyr-Core-2.7.6/drivers/sensor/bme280/
DKconfig31 Select temperature oversampling for the BME280 sensor. Higher values
49 Select pressure oversampling for the BME280 sensor. Higher values
67 Select humidity oversampling for the BME280 sensor. Higher values
86 Higher values lead to lower power consumption.
/Zephyr-Core-2.7.6/lib/os/
DKconfig.cbprintf28 prompt "Control range of convertible integer values"
33 bool "Convert the full range of integer values"
36 range of all integral and pointer values.
43 bool "Convert only integer values that fit in 32 bits"
46 values with no more than 32 bits.
57 With CBPRINTF_NANO all conversions will be attempted but values that
/Zephyr-Core-2.7.6/scripts/tests/twister/
Dtest_testsuite_class.py39 # Test 2 : Assert Testcase name is expected & all testcases values are testcase class objects
42 assert all(isinstance(n, TestCase) for n in class_testsuite.testcases.values())
82 # the expected values after execution of load_from_file function
150 appropriate values according to the filters
207 assert x in discards.values()
223 appropriate values according to the filters
239 for d in discards.values():
254 Part 3 : Testing edge cases for ram and flash values of platforms & testcases
271 Test 1: instances dictionary keys have expected values (Platform Name + Testcase Name)
272 Test 2: Values of 'instances' dictionary in Testsuite class are an
[all …]

12345678910>>...33