docs: raspberrrypi: Correct names of products

Replace occurrences of "RaspberryPi" with "Raspberry Pi" in
documentation, comment blocks etc. Correct the name of "PicoW" to
"Pico W", matching Raspberry Pi's documentation at
https://www.raspberrypi.com/documentation/microcontrollers/pico-series.html .

Signed-off-by: Andrew Featherstone <andrew.featherstone@gmail.com>
This commit is contained in:
Andrew Featherstone 2025-03-30 22:25:21 +01:00 committed by Dan Kalowsky
commit a2aa0a3e2b
20 changed files with 36 additions and 36 deletions

View file

@ -207,7 +207,7 @@ The Raspberry Pi Pico has an SWD interface that can be used to program
and debug the onboard SoC. This interface can be used with OpenOCD.
To use it, OpenOCD version 0.12.0 or later is needed.
If you are using a Debian based system (including RaspberryPi OS, Ubuntu. and more),
If you are using a Debian based system (including Raspberry Pi OS, Ubuntu. and more),
using the `pico_setup.sh`_ script is a convenient way to set up the forked version of OpenOCD.
Here is an example of building and flashing the :zephyr:code-sample:`blinky` application.

View file

@ -1,5 +1,5 @@
identifier: rpi_pico
name: RaspberryPi-Pico
name: Raspberry Pi Pico
type: mcu
arch: arm
flash: 2048

View file

@ -1,5 +1,5 @@
identifier: rpi_pico/rp2040/w
name: RaspberryPi-Pico-w
name: Raspberry Pi Pico W
type: mcu
arch: arm
flash: 2048

View file

@ -1,7 +1,7 @@
.. _rpi_pico_uno_flexypin:
RaspberryPi Pico to UNO FlexyPin Adapter
########################################
Raspberry Pi Pico to UNO FlexyPin Adapter
#########################################
Overview
********
@ -16,10 +16,10 @@ to the Arduino UNO form factor.
.. image:: img/rpi_pico_uno_flexypin.png
:align: center
:alt: RaspberryPi Pico to UNO FlexyPin Adapter
:alt: Raspberry Pi Pico to UNO FlexyPin Adapter
Pins Assignment of the RaspberryPi Pico to UNO FlexyPin Adapter
===============================================================
Pins Assignment of the Raspberry Pi Pico to UNO FlexyPin Adapter
================================================================
+---------------------+------------+
| Rpi-Pico Pin | UNO Header |

View file

@ -114,7 +114,7 @@ interface that can be used to program and debug the on board RP2040. This
interface can be utilized by OpenOCD. To use it with the RP2040, OpenOCD
version 0.12.0 or later is needed.
If you are using a Debian based system (including RaspberryPi OS, Ubuntu. and
If you are using a Debian based system (including Raspberry Pi OS, Ubuntu, and
more), using the `pico_setup.sh`_ script is a convenient way to set up the
forked version of OpenOCD.

View file

@ -88,7 +88,7 @@ The overall explanation regarding flashing and debugging is the same as or
See :ref:`rpi_pico_flashing_using_openocd`. in ``rpi_pico`` documentation.
A typical build command for w5500_evb_pico2 is as follows.
This assumes a CMSIS-DAP adapter such as the RaspberryPi Debug Probe,
This assumes a CMSIS-DAP adapter such as the Raspberry Pi Debug Probe,
but if you are using something else, specify ``RPI_PICO_DEBUG_ADAPTER``.
.. zephyr-app-commands::

View file

@ -148,7 +148,7 @@ Enhanced Serial Peripheral Interface (eSPI)
GPIO
====
* To support the RP2350B, which has many pins, the RaspberryPi-GPIO configuration has
* To support the RP2350B, which has many pins, the Raspberry Pi-GPIO configuration has
been changed. The previous role of :dtcompatible:`raspberrypi,rpi-gpio` has been migrated to
:dtcompatible:`raspberrypi,rpi-gpio-port`, and :dtcompatible:`raspberrypi,rpi-gpio` is
now left as a placeholder and mapper.

View file

@ -27,9 +27,9 @@ LOG_MODULE_REGISTER(adc_rpi, CONFIG_ADC_LOG_LEVEL);
#define ADC_RPI_CHANNEL_NUM (ADC_CS_RROBIN_MSB - ADC_CS_RROBIN_LSB + 1)
/**
* @brief RaspberryPi Pico ADC config
* @brief Raspberry Pi Pico ADC config
*
* This structure contains constant data for given instance of RaspberryPi Pico ADC.
* This structure contains constant data for given instance of Raspberry Pi Pico ADC.
*/
struct adc_rpi_config {
/** Number of supported channels */
@ -47,14 +47,14 @@ struct adc_rpi_config {
};
/**
* @brief RaspberryPi Pico ADC data
* @brief Raspberry Pi Pico ADC data
*
* This structure contains data structures used by a RaspberryPi Pico ADC.
* This structure contains data structures used by a Raspberry Pi Pico ADC.
*/
struct adc_rpi_data {
/** Structure that handle state of ongoing read operation */
struct adc_context ctx;
/** Pointer to RaspberryPi Pico ADC own device structure */
/** Pointer to Raspberry Pi Pico ADC own device structure */
const struct device *dev;
/** Pointer to memory where next sample will be written */
uint16_t *buf;
@ -127,7 +127,7 @@ static int adc_rpi_channel_setup(const struct device *dev,
/**
* @brief Check if buffer in @p sequence is big enough to hold all ADC samples
*
* @param dev RaspberryPi Pico ADC device
* @param dev Raspberry Pi Pico ADC device
* @param sequence ADC sequence description
*
* @return 0 on success
@ -162,7 +162,7 @@ static int adc_rpi_check_buffer_size(const struct device *dev,
/**
* @brief Start processing read request
*
* @param dev RaspberryPi Pico ADC device
* @param dev Raspberry Pi Pico ADC device
* @param sequence ADC sequence description
*
* @return 0 on success
@ -290,10 +290,10 @@ static void adc_context_update_buffer_pointer(struct adc_context *ctx,
}
/**
* @brief Function called on init for each RaspberryPi Pico ADC device. It setups all
* @brief Function called on init for each Raspberry Pi Pico ADC device. It setups all
* channels to return constant 0 mV and create acquisition thread.
*
* @param dev RaspberryPi Pico ADC device
* @param dev Raspberry Pi Pico ADC device
*
* @return 0 on success
*/

View file

@ -9,4 +9,4 @@ config DMA_RPI_PICO
select PICOSDK_USE_CLAIM
depends on RESET
help
DMA driver for RaspberryPi Pico.
DMA driver for Raspberry Pi Pico.

View file

@ -99,4 +99,4 @@ config WS2812_STRIP_RPI_PICO_PIO
select PICOSDK_USE_PIO
help
Enable driver for WS2812 (and compatibles) LED strip using
the RaspberryPi Pico's PIO.
the Raspberry Pi Pico's PIO.

View file

@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
config PIO_RPI_PICO
bool "RaspberryPi Pico PIO"
bool "Raspberry Pi Pico PIO"
default y
depends on DT_HAS_RASPBERRYPI_PICO_PIO_ENABLED
depends on RESET

View file

@ -2,9 +2,9 @@
# SPDX-License-Identifier: Apache-2.0
config PINCTRL_RPI_PICO
bool "RaspberryPi Pico pin controller driver"
bool "Raspberry Pi Pico pin controller driver"
default y
depends on DT_HAS_RASPBERRYPI_PICO_PINCTRL_ENABLED
select PICOSDK_USE_GPIO
help
RaspberryPi Pico pinctrl driver
Raspberry Pi Pico pinctrl driver

View file

@ -2,18 +2,18 @@
# SPDX-License-Identifier: Apache-2.0
config REGULATOR_RPI_PICO
bool "RaspberryPi Pico regulator driver"
bool "Raspberry Pi Pico regulator driver"
default y
depends on DT_HAS_RASPBERRYPI_CORE_SUPPLY_REGULATOR_ENABLED
help
Enable support for the RaspberryPi Pico regulator.
Enable support for the Raspberry Pi Pico regulator.
if REGULATOR_RPI_PICO
config REGULATOR_RPI_PICO_INIT_PRIORITY
int "RaspberryPi Pico regulator driver init priority"
int "Raspberry Pi Pico regulator driver init priority"
default KERNEL_INIT_PRIORITY_DEVICE
help
Init priority for the RaspberryPi Pico regulator driver.
Init priority for the Raspberry Pi Pico regulator driver.
endif

View file

@ -1,7 +1,7 @@
# Copyright (c) 2022 TOKTIA Hrioshi <tokita.hiroshi@fujitsu.com>
# SPDX-License-Identifier: Apache-2.0
description: RaspberryPi Pico ADC
description: Raspberry Pi Pico ADC
compatible: "raspberrypi,pico-adc"

View file

@ -1,7 +1,7 @@
# Copyright (c) 2023 TOKITA Hiroshi
# SPDX-License-Identifier: Apache-2.0
description: RaspberryPi Pico timer
description: Raspberry Pi Pico timer
compatible: "raspberrypi,pico-timer"

View file

@ -44,7 +44,7 @@ properties:
child-binding:
description: |
Worldsemi WS2812 or compatible LED strip driver based on RaspberryPi Pico's PIO
Worldsemi WS2812 or compatible LED strip driver based on Raspberry Pi Pico's PIO
The LED strip node can put up to 4 instances under a single PIO node.
include: ws2812-gpio.yaml

View file

@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
description: |
RaspberryPi Pico core supply regurator
Raspberry Pi Pico core supply regurator
compatible: "raspberrypi,core-supply-regulator"

View file

@ -1,7 +1,7 @@
# Copyright (c) 2024 Andrew Featherstone <andrew.featherstone@gmail.com>
# SPDX-License-Identifier: Apache-2.0
description: RaspberryPi Pico RTC
description: Raspberry Pi Pico RTC
compatible: "raspberrypi,pico-rtc"

View file

@ -1,7 +1,7 @@
# Copyright (c) 2023 TOKITA Hiroshi
# SPDX-License-Identifier: Apache-2.0
description: RaspberryPi Pico family temperature sensor node
description: Raspberry Pi Pico family temperature sensor node
compatible: "raspberrypi,pico-temp"

View file

@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
description: |
RaspberryPi Pico USB Device Controller.
Raspberry Pi Pico USB Device Controller.
Example of enabling the controller with vbus detection: