Searched full:pi (Results 1 – 25 of 93) sorted by relevance
1234
/Zephyr-Core-3.5.0/tests/kernel/fpu_sharing/generic/src/ |
D | pi.c | 10 * @brief pi computation portion of FPU sharing test 18 * Testing utilizes a pair of tasks that independently compute pi. The lower 22 * The following formula is used to compute pi: 24 * pi = 4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - ... ) 26 * This series converges to pi very slowly. For example, performing 50,000 29 * A reference value of pi is computed once at the start of the test. All 69 * @brief Entry point for the low priority pi compute task 75 volatile FP_TYPE pi; /* volatile to avoid optimizing out of loop */ in calculate_pi_low() local 84 pi = FP_CONSTANT(1.0); in calculate_pi_low() 88 pi += sign / divisor; in calculate_pi_low() [all …]
|
D | main.c | 23 * Enable round robin scheduling to allow both the low priority pi in generic_setup() 24 * computation and load/store tasks to execute. The high priority pi in generic_setup()
|
/Zephyr-Core-3.5.0/samples/arch/smp/pi/ |
D | README.rst | 3 SMP Pi 8 This sample application calculates Pi independently in many threads, and 24 This project outputs Pi values calculated by each thread and in the end total time 29 :zephyr-app: samples/arch/smp/pi 40 Calculate first 240 digits of Pi independently by 16 threads. 41 Pi value calculated by thread #0: 3141592653589793238462643383279502884197... 42 Pi value calculated by thread #1: 3141592653589793238462643383279502884197... 44 Pi value calculated by thread #14: 314159265358979323846264338327950288419... 45 Pi value calculated by thread #15: 314159265358979323846264338327950288419...
|
D | sample.yaml | 2 description: Calculation of Pi independently in 4 name: SMP Pi 14 - "Calculate first [0-9]+ digits of Pi independently by [0-9]+ threads.(.*)" 15 - "Pi value calculated by thread #[0-9]+: [0-9]+(.*)" 18 sample.smp.pi:
|
/Zephyr-Core-3.5.0/drivers/sensor/rpi_pico_temp/ |
D | Kconfig | 1 # Raspberry Pi Pico temperature sensor configuration options 7 bool "Raspberry Pi Pico CPU Temperature Sensor" 13 Enable driver for Raspberry Pi Pico CPU temperature sensor.
|
/Zephyr-Core-3.5.0/soc/arm/rpi_pico/rp2/ |
D | Kconfig.series | 1 # Raspberry Pi RP2XXX MCU line 8 bool "Raspberry Pi RP2 series MCU" 19 Enable support for Raspberry Pi RP2 MCU series
|
D | Kconfig.soc | 1 # Raspberry Pi RP2XXX MCU line 12 bool "Raspberry Pi RP2040"
|
D | soc.c | 10 * @brief System/hardware module for Raspberry Pi RP2040 family processor 13 * for the Raspberry Pi RP2040 family processor.
|
/Zephyr-Core-3.5.0/boards/arm64/rpi_4b/doc/ |
D | index.rst | 3 Raspberry Pi 4 Model B (Cortex-A72) 8 see <https://www.raspberrypi.com/products/raspberry-pi-4-model-b/specifications/> 12 see <https://www.raspberrypi.com/documentation/computers/raspberry-pi.html> 16 The Raspberry Pi 4 Model B board configuration supports the following 39 1. Install Raspberry Pi OS using Raspberry Pi Imager. see <https://www.raspberrypi.com/software/>. 46 Hello World! Raspberry Pi 4 Model B!
|
/Zephyr-Core-3.5.0/boards/arm/pico_pi_m4/ |
D | Kconfig.board | 1 # Pico-Pi iMX7D M4 board 7 bool "Pico-PI iMX7D Dual"
|
/Zephyr-Core-3.5.0/boards/arm/rpi_pico/ |
D | Kconfig.board | 5 bool "Raspberry Pi Pico Board" 9 bool "Raspberry Pi Pico W Board"
|
/Zephyr-Core-3.5.0/drivers/flash/ |
D | Kconfig.rpi_pico | 6 bool "Raspberry Pi Pico flash driver" 13 Enable Raspberry Pi Pico flash driver.
|
/Zephyr-Core-3.5.0/drivers/serial/ |
D | Kconfig.rpi_pico | 5 bool "Raspberry Pi UART driver" 14 bool "Raspberry Pi PIO UART driver"
|
/Zephyr-Core-3.5.0/boards/arm/rpi_pico/doc/ |
D | index.rst | 3 Raspberry Pi Pico 9 The Raspberry Pi Pico and Pico W are small, low-cost, versatile boards from 10 Raspberry Pi. They are equipped with an RP2040 SoC, an on-board LED, 37 :alt: Raspberry Pi Pico 42 :alt: Raspberry Pi Pico W 44 Raspberry Pi Pico (above) and Pico W (below) 45 (Images courtesy of Raspberry Pi) 137 PIO programs are assembled using `pioasm`, a tool provided by Raspberry Pi. 189 The Raspberry Pi Pico has an SWD interface that can be used to program 217 How to connect `picoprobe` and `raspberrypi-swd` is described in `Getting Started with Raspberry Pi… [all …]
|
/Zephyr-Core-3.5.0/tests/kernel/fpu_sharing/generic/ |
D | README.txt | 8 2) independently compute pi and check for any errors 69 Pi calculation OK after 50 (high) + 10 (low) tests (computed 3.141598) 70 Pi calculation OK after 150 (high) + 31 (low) tests (computed 3.141598) 71 Pi calculation OK after 250 (high) + 51 (low) tests (computed 3.141598) 72 Pi calculation OK after 350 (high) + 72 (low) tests (computed 3.141598) 73 Pi calculation OK after 450 (high) + 92 (low) tests (computed 3.141598)
|
/Zephyr-Core-3.5.0/dts/bindings/gpio/ |
D | raspberrypi,pico-header.yaml | 5 GPIO pins exposed on Raspberry Pi Pico headers. 7 The Raspberry Pi Pico layout provides 2 columns of 20 pins headers
|
D | raspberrypi-40pins-header.yaml | 5 GPIO pins exposed on Raspberry Pi 40-pin header. 7 The Raspberry Pi layout provides a 2x20 pins header.
|
/Zephyr-Core-3.5.0/samples/modules/tflite-micro/hello_world/src/ |
D | constants.h | 21 * which is from 0 to (2 * Pi). We approximate Pi to avoid requiring additional
|
/Zephyr-Core-3.5.0/samples/arch/smp/pi/src/ |
D | main.c | 14 * Amount of digits of Pi to calculate, must be a multiple of 4, 41 * Adapted and improved (for random number of digits) version of Pi in test_thread() 85 printk("Calculate first %d digits of Pi independently by %d threads.\n", in main() 110 printk("Pi value calculated by thread #%d: %s\n", i, th_buffer[i]); in main()
|
/Zephyr-Core-3.5.0/boards/arm64/rpi_4b/ |
D | rpi_4b.yaml | 2 name: Raspberry Pi 4 Model B
|
D | Kconfig.defconfig | 5 default "Raspberry Pi 4 Model B"
|
/Zephyr-Core-3.5.0/dts/bindings/spi/ |
D | raspberrypi,pico-spi.yaml | 1 description: Raspberry Pi Pico SPI
|
/Zephyr-Core-3.5.0/dts/bindings/i2c/ |
D | raspberrypi,pico-i2c.yaml | 1 description: Raspberry Pi Pico I2C
|
/Zephyr-Core-3.5.0/drivers/reset/ |
D | Kconfig.rpi_pico | 5 bool "Raspberry Pi Reset Controller driver"
|
/Zephyr-Core-3.5.0/drivers/gpio/ |
D | Kconfig.rpi_pico | 8 bool "Raspberry Pi Pico GPIO driver"
|
1234