Home
last modified time | relevance | path

Searched +full:pico +full:- +full:gpios (Results 1 – 17 of 17) sorted by relevance

/Zephyr-latest/dts/bindings/spi/
Draspberrypi,pico-spi-pio.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Raspberry Pi Pico SPI via PIO
6 compatible: "raspberrypi,pico-spi-pio"
8 include: ["spi-controller.yaml", "raspberrypi,pico-pio-device.yaml", "reset-device.yaml"]
11 clk-gpios:
12 type: phandle-array
17 mosi-gpios:
18 type: phandle-array
22 miso-gpios:
23 type: phandle-array
[all …]
/Zephyr-latest/dts/bindings/fpga/
Dlattice,ice40-fpga-bitbang.yaml3 # SPDX-License-Identifier: Apache-2.0
7 compatible: "lattice,ice40-fpga-bitbang"
9 include: lattice,ice40-fpga-base.yaml
12 clk-gpios:
13 type: phandle-array
18 clk-gpios = <&gpio0 5 GPIO_PUSH_PULL>;
19 pico-gpios:
20 type: phandle-array
23 Peripheral-In Controller-Out GPIO input on iCE40.
25 pico-gpios = <&gpio0 7 GPIO_PUSH_PULL>;
[all …]
/Zephyr-latest/boards/raspberrypi/common/
Drpi_pico-led.dtsi4 * SPDX-License-Identifier: Apache-2.0
7 /* Pico and Pico 2 boards (but not Pico W) have a common LED placement. */
10 compatible = "gpio-leds";
12 gpios = <&gpio0 25 GPIO_ACTIVE_HIGH>;
18 compatible = "pwm-leds";
28 pwm-led0 = &pwm_led0;
/Zephyr-latest/tests/drivers/build_all/fpga/
Dspi.dtsi4 * SPDX-License-Identifier: Apache-2.0
11 compatible = "lattice,ice40-fpga-bitbang";
14 spi-max-frequency = <1000000>;
16 cdone-gpios = <&test_gpio 0 0>;
17 creset-gpios = <&test_gpio 0 0>;
18 clk-gpios = <&test_gpio 0 0>;
19 pico-gpios = <&test_gpio 0 0>;
20 gpios-set-reg = <0>;
21 gpios-clear-reg = <0>;
22 config-delay-us = <3900>;
[all …]
/Zephyr-latest/samples/sensor/bme280/
Drpi_pico_spi_pio.overlay9 input-enable;
18 pinctrl-0 = <&pio0_spi0_default>;
19 pinctrl-names = "default";
21 compatible = "raspberrypi,pico-spi-pio";
23 #address-cells = <1>;
24 #size-cells = <0>;
26 miso-gpios = <&gpio0 12 0>;
27 cs-gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
28 clk-gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>;
29 mosi-gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>;
[all …]
DREADME.rst1 .. zephyr:code-sample:: bme280
3 :relevant-api: sensor_interface
14 https://www.bosch-sensortec.com/products/environmental-sensors/humidity-sensors-bme280/
24 or SPI. Configuration is done via :ref:`devicetree <dt-guide>`. The devicetree
34 https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bme280-ds002.pdf
36 Boards with a built-in BME280
42 .. zephyr-app-commands::
43 :zephyr-app: samples/sensor/bme280
53 .. zephyr-app-commands::
54 :zephyr-app: samples/sensor/bme280
[all …]
/Zephyr-latest/samples/sensor/magn_polling/boards/
Drpi_pico.overlay15 input-enable;
25 pinctrl-0 = <&pio0_spi0_default>;
26 pinctrl-names = "default";
28 compatible = "raspberrypi,pico-spi-pio";
30 #address-cells = <1>;
31 #size-cells = <0>;
33 miso-gpios = <&gpio0 8 0>;
34 cs-gpios = <&gpio0 9 GPIO_ACTIVE_LOW>;
35 clk-gpios = <&gpio0 10 GPIO_ACTIVE_HIGH>;
36 mosi-gpios = <&gpio0 11 GPIO_ACTIVE_HIGH>;
[all …]
/Zephyr-latest/boards/raspberrypi/rpi_pico/
Drpi_pico_rp2040_w.dts2 * Copyright (c) 2023 Dave Rensberger - Beechwoods Software
5 * SPDX-License-Identifier: Apache-2.0
8 /dts-v1/;
10 #include "rpi_pico-common.dtsi"
24 input-enable;
33 input-enable;
42 compatible = "raspberrypi,pico-spi-pio";
44 #address-cells = <1>;
45 #size-cells = <0>;
46 cs-gpios = <&gpio0 25 GPIO_ACTIVE_LOW>;
[all …]
/Zephyr-latest/tests/drivers/spi/spi_loopback/boards/
Drpi_pico.overlay4 * SPDX-License-Identifier: Apache-2.0
7 #include <zephyr/dt-bindings/dma/rpi-pico-dma-rp2040.h>
14 cs-gpios = <&gpio0 17 GPIO_ACTIVE_LOW>;
17 dma-names = "tx", "rx";
20 compatible = "test-spi-loopback-slow";
22 spi-max-frequency = <500000>;
25 compatible = "test-spi-loopback-fast";
27 spi-max-frequency = <16000000>;
/Zephyr-latest/boards/shields/adafruit_neopixel_grid_bff/boards/
Dadafruit_qt_py_rp2040.overlay3 * SPDX-License-Identifier: Apache-2.0
6 #include <dt-bindings/pinctrl/rpi-pico-rp2040-pinctrl.h>
19 bff-ws2812 {
20 compatible = "worldsemi,ws2812-rpi_pico-pio";
22 pinctrl-0 = <&pinctrl_bff_ws2812>;
23 pinctrl-names = "default";
24 bit-waveform = <3>, <3>, <4>;
28 gpios = <&xiao_d 3 GPIO_ACTIVE_HIGH>;
29 chain-length = <25>;
30 color-mapping = <LED_COLOR_ID_GREEN
[all …]
/Zephyr-latest/dts/bindings/led_strip/
Dworldsemi,ws2812-rpi_pico-pio.yaml2 # SPDX-License-Identifier: Apache-2.0
7 compatible: "worldsemi,ws2812-rpi_pico-pio"
9 include: pinctrl-device.yaml
12 bit-waveform:
15 This property defines the waveform for sending 1-bit data.
19 The T1 is equal to (T1H-T0H) or (T0L-T1L) in the datasheet.
21 Code-0
22 +------+ +---
26 ---+ +-----------------+
28 Code-1
[all …]
/Zephyr-latest/boards/wiznet/w5500_evb_pico/
Dw5500_evb_pico.dts5 * SPDX-License-Identifier: Apache-2.0
8 /dts-v1/;
13 #include "w5500_evb_pico-pinctrl.dtsi"
14 #include <zephyr/dt-bindings/pwm/pwm.h>
16 #include <zephyr/dt-bindings/i2c/i2c.h>
22 zephyr,flash-controller = &ssi;
24 zephyr,shell-uart = &uart0;
25 zephyr,code-partition = &code_partition;
29 compatible = "raspberrypi,pico-header";
30 #gpio-cells = <2>;
[all …]
/Zephyr-latest/doc/releases/
Drelease-notes-3.5.rst38 * CVE-2023-3725 `Zephyr project bug tracker GHSA-2g3m-p6c7-8rr3
39 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-2g3m-p6c7-8rr3>`_
41 * CVE-2023-4257 `Zephyr project bug tracker GHSA-853q-q69w-gf5j
42 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-853q-q69w-gf5j>`_
44 * CVE-2023-4258 `Zephyr project bug tracker GHSA-m34c-cp63-rwh7
45 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-m34c-cp63-rwh7>`_
47 * CVE-2023-4259 `Zephyr project bug tracker GHSA-gghm-c696-f4j4
48 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-gghm-c696-f4j4>`_
50 * CVE-2023-4260 `Zephyr project bug tracker GHSA-gj27-862r-55wh
51 <https://github.com/zephyrproject-rtos/zephyr/security/advisories/GHSA-gj27-862r-55wh>`_
[all …]
Drelease-notes-3.2.rst13 * Added support for :ref:`bin-blobs` (also see :ref:`west-blobs`).
15 * Converted all supported boards from ``pinmux`` to :ref:`pinctrl-guide`.
31 * CVE-2022-2993: Under embargo until 2022-11-03
33 * CVE-2022-2741: Under embargo until 2022-10-14
56 This definition can be used by third-party code to compile code conditional
58 Therefore, any third-party code integrated using the Zephyr build system will
91 changed from ``-ENETDOWN`` to ``-ENETUNREACH``. A return value of ``-ENETDOWN`` now indicates
129 * Removed support for configuring the CAN-FD maximum DLC value via Kconfig
156 valid for specific bindings to specify like :dtcompatible:`gpio-leds` and
157 :dtcompatible:`fixed-partitions`.
[all …]
Drelease-notes-3.3.rst14 * Introduced :ref:`USB-C <usbc_api>` device stack with PD (power delivery)
17 CMSIS-DSP as the default backend.
30 * CVE-2023-0359: Under embargo until 2023-04-20
32 * CVE-2023-0779: Under embargo until 2023-04-22
66 removed in favor of new :dtcompatible:`zephyr,flash-disk` devicetree binding.
71 * Starting from this release ``zephyr-`` prefixed tags won't be created
82 image states). Use of a truncated hash or non-sha256 hash will still work
88 registration function at boot-up. If applications register this then
93 application code, these will now automatically be registered at boot-up (this
129 This may cause out-of-tree scripts or commands to fail if they have relied
[all …]
Drelease-notes-3.7.rst10 This release is the last non-maintenance 3.x release and, as such, will be the next
18 * A long-awaited :ref:`HTTP Server <http_server_interface>` library, and associated service API,
21 * :ref:`POSIX support <posix_support>` has been extended, with most Options of the IEEE 1003-2017
25 * Bluetooth Host has been extended with support for the Nordic UART Service (NUS), Hands-free Audio
29 :ref:`read-then-decode approach <sensor-read-and-decode>` that enables more types of sensors and
35 * Trusted Firmware-M (TF-M) 2.1.0 and Mbed TLS 3.6.0 have been integrated into Zephyr.
39 1588) allows to synchronize time across devices with sub-microsecond accuracy.
52 * 1-Wire
71 :ref:`pinctrl-guide` for more details.
88 * CVE-2024-3077 `Zephyr project bug tracker GHSA-gmfv-4vfh-2mh8
[all …]
Drelease-notes-2.7.rst17 * Support for M-Profile Vector Extensions (MVE) on ARMv8.1-M
18 * Improved thread safety for Newlib and C++ on SMP-capable systems
20 * New Action-based Power Management API
23 * Linker Support for Tightly-Coupled Memory in RISC-V
25 * Support for extended PCI / PCIe capabilities, improved MIS-X support
33 * The kernel now supports both 32- and 64-bit architectures
36 * We added support for Point-to-Point Protocol (PPP)
37 * We added support for UpdateHub, an end-to-end solution for over-the-air device updates
38 * We added support for ARM Cortex-R Architecture
40 * Expanded support for ARMv6-M architecture
[all …]