Skip to content

Commit a2aa0a3

Browse files
ajf58dkalowsk
authored andcommitted
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>
1 parent bbaaac9 commit a2aa0a3

File tree

20 files changed

+36
-36
lines changed

20 files changed

+36
-36
lines changed

boards/raspberrypi/rpi_pico/doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ The Raspberry Pi Pico has an SWD interface that can be used to program
207207
and debug the onboard SoC. This interface can be used with OpenOCD.
208208
To use it, OpenOCD version 0.12.0 or later is needed.
209209

210-
If you are using a Debian based system (including RaspberryPi OS, Ubuntu. and more),
210+
If you are using a Debian based system (including Raspberry Pi OS, Ubuntu. and more),
211211
using the `pico_setup.sh`_ script is a convenient way to set up the forked version of OpenOCD.
212212

213213
Here is an example of building and flashing the :zephyr:code-sample:`blinky` application.

boards/raspberrypi/rpi_pico/rpi_pico.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
identifier: rpi_pico
2-
name: RaspberryPi-Pico
2+
name: Raspberry Pi Pico
33
type: mcu
44
arch: arm
55
flash: 2048

boards/raspberrypi/rpi_pico/rpi_pico_rp2040_w.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
identifier: rpi_pico/rp2040/w
2-
name: RaspberryPi-Pico-w
2+
name: Raspberry Pi Pico W
33
type: mcu
44
arch: arm
55
flash: 2048

boards/shields/rpi_pico_uno_flexypin/doc/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _rpi_pico_uno_flexypin:
22

3-
RaspberryPi Pico to UNO FlexyPin Adapter
4-
########################################
3+
Raspberry Pi Pico to UNO FlexyPin Adapter
4+
#########################################
55

66
Overview
77
********
@@ -16,10 +16,10 @@ to the Arduino UNO form factor.
1616

1717
.. image:: img/rpi_pico_uno_flexypin.png
1818
:align: center
19-
:alt: RaspberryPi Pico to UNO FlexyPin Adapter
19+
:alt: Raspberry Pi Pico to UNO FlexyPin Adapter
2020

21-
Pins Assignment of the RaspberryPi Pico to UNO FlexyPin Adapter
22-
===============================================================
21+
Pins Assignment of the Raspberry Pi Pico to UNO FlexyPin Adapter
22+
================================================================
2323

2424
+---------------------+------------+
2525
| Rpi-Pico Pin | UNO Header |

boards/wiznet/w5500_evb_pico/doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ interface that can be used to program and debug the on board RP2040. This
114114
interface can be utilized by OpenOCD. To use it with the RP2040, OpenOCD
115115
version 0.12.0 or later is needed.
116116

117-
If you are using a Debian based system (including RaspberryPi OS, Ubuntu. and
117+
If you are using a Debian based system (including Raspberry Pi OS, Ubuntu, and
118118
more), using the `pico_setup.sh`_ script is a convenient way to set up the
119119
forked version of OpenOCD.
120120

boards/wiznet/w5500_evb_pico2/doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ The overall explanation regarding flashing and debugging is the same as or
8888
See :ref:`rpi_pico_flashing_using_openocd`. in ``rpi_pico`` documentation.
8989

9090
A typical build command for w5500_evb_pico2 is as follows.
91-
This assumes a CMSIS-DAP adapter such as the RaspberryPi Debug Probe,
91+
This assumes a CMSIS-DAP adapter such as the Raspberry Pi Debug Probe,
9292
but if you are using something else, specify ``RPI_PICO_DEBUG_ADAPTER``.
9393

9494
.. zephyr-app-commands::

doc/releases/migration-guide-4.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Enhanced Serial Peripheral Interface (eSPI)
148148
GPIO
149149
====
150150

151-
* To support the RP2350B, which has many pins, the RaspberryPi-GPIO configuration has
151+
* To support the RP2350B, which has many pins, the Raspberry Pi-GPIO configuration has
152152
been changed. The previous role of :dtcompatible:`raspberrypi,rpi-gpio` has been migrated to
153153
:dtcompatible:`raspberrypi,rpi-gpio-port`, and :dtcompatible:`raspberrypi,rpi-gpio` is
154154
now left as a placeholder and mapper.

drivers/adc/adc_rpi_pico.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ LOG_MODULE_REGISTER(adc_rpi, CONFIG_ADC_LOG_LEVEL);
2727
#define ADC_RPI_CHANNEL_NUM (ADC_CS_RROBIN_MSB - ADC_CS_RROBIN_LSB + 1)
2828

2929
/**
30-
* @brief RaspberryPi Pico ADC config
30+
* @brief Raspberry Pi Pico ADC config
3131
*
32-
* This structure contains constant data for given instance of RaspberryPi Pico ADC.
32+
* This structure contains constant data for given instance of Raspberry Pi Pico ADC.
3333
*/
3434
struct adc_rpi_config {
3535
/** Number of supported channels */
@@ -47,14 +47,14 @@ struct adc_rpi_config {
4747
};
4848

4949
/**
50-
* @brief RaspberryPi Pico ADC data
50+
* @brief Raspberry Pi Pico ADC data
5151
*
52-
* This structure contains data structures used by a RaspberryPi Pico ADC.
52+
* This structure contains data structures used by a Raspberry Pi Pico ADC.
5353
*/
5454
struct adc_rpi_data {
5555
/** Structure that handle state of ongoing read operation */
5656
struct adc_context ctx;
57-
/** Pointer to RaspberryPi Pico ADC own device structure */
57+
/** Pointer to Raspberry Pi Pico ADC own device structure */
5858
const struct device *dev;
5959
/** Pointer to memory where next sample will be written */
6060
uint16_t *buf;
@@ -127,7 +127,7 @@ static int adc_rpi_channel_setup(const struct device *dev,
127127
/**
128128
* @brief Check if buffer in @p sequence is big enough to hold all ADC samples
129129
*
130-
* @param dev RaspberryPi Pico ADC device
130+
* @param dev Raspberry Pi Pico ADC device
131131
* @param sequence ADC sequence description
132132
*
133133
* @return 0 on success
@@ -162,7 +162,7 @@ static int adc_rpi_check_buffer_size(const struct device *dev,
162162
/**
163163
* @brief Start processing read request
164164
*
165-
* @param dev RaspberryPi Pico ADC device
165+
* @param dev Raspberry Pi Pico ADC device
166166
* @param sequence ADC sequence description
167167
*
168168
* @return 0 on success
@@ -290,10 +290,10 @@ static void adc_context_update_buffer_pointer(struct adc_context *ctx,
290290
}
291291

292292
/**
293-
* @brief Function called on init for each RaspberryPi Pico ADC device. It setups all
293+
* @brief Function called on init for each Raspberry Pi Pico ADC device. It setups all
294294
* channels to return constant 0 mV and create acquisition thread.
295295
*
296-
* @param dev RaspberryPi Pico ADC device
296+
* @param dev Raspberry Pi Pico ADC device
297297
*
298298
* @return 0 on success
299299
*/

drivers/dma/Kconfig.rpi_pico

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ config DMA_RPI_PICO
99
select PICOSDK_USE_CLAIM
1010
depends on RESET
1111
help
12-
DMA driver for RaspberryPi Pico.
12+
DMA driver for Raspberry Pi Pico.

drivers/led_strip/Kconfig.ws2812

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ config WS2812_STRIP_RPI_PICO_PIO
9999
select PICOSDK_USE_PIO
100100
help
101101
Enable driver for WS2812 (and compatibles) LED strip using
102-
the RaspberryPi Pico's PIO.
102+
the Raspberry Pi Pico's PIO.

0 commit comments

Comments
 (0)