Skip to content

Commit f0e6776

Browse files
committed
treewide: apply codespell corrections
1 parent b5aba96 commit f0e6776

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

boards/spark-core/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,6 @@ Pin mapping in RIOT
114114
The following image shows RIOT's static pin mapping chosen for this board.
115115
This mapping is completely arbitrary, it can be adjusted in
116116
`boards/spark-core/include/periph_conf.h`
117-
![Pin Mappin](http://docs.spark.io/assets/images/spark-pinout.png)
117+
![Pin Mapping](http://docs.spark.io/assets/images/spark-pinout.png)
118118

119119
*/

cpu/esp32/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ For more information on `esptool.py`, please refer to the
577577

578578
Once the toolchain is installed either as RIOT docker build image or as local
579579
installation, a RIOT application can be compiled and flashed for an ESP32x
580-
boards. For that purpuse change to RIOT's root directory and execute the make
580+
boards. For that purpose change to RIOT's root directory and execute the make
581581
command, for example:
582582

583583
- RIOT Docker build image installation

dist/tools/zep_dispatch/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ static void _print_help(const char *progname)
200200
fprintf(stderr, "\tport\t\tlocal port to bind to\n");
201201

202202
fprintf(stderr, "\noptional arguments:\n");
203-
fprintf(stderr, "\t-t <file>\tLoad toplogy from file\n");
203+
fprintf(stderr, "\t-t <file>\tLoad topology from file\n");
204204
fprintf(stderr, "\t-p <file>\tStore PID in file\n");
205205
fprintf(stderr, "\t-s <seed>\tRandom seed used to simulate packet loss\n");
206206
fprintf(stderr, "\t-g <file>\tFile to dump topology as Graphviz visualisation on SIGUSR1\n");

drivers/at86rf2xx/include/at86rf2xx_internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ void at86rf2xx_sram_write(const at86rf2xx_t *dev, uint8_t offset,
150150
const uint8_t *data, size_t len);
151151
#endif
152152
/**
153-
* @brief Start a read transcation internal frame buffer of the given device
153+
* @brief Start a read transaction internal frame buffer of the given device
154154
*
155155
* Reading the frame buffer returns some extra bytes that are not accessible
156156
* through reading the RAM directly. This locks the used SPI.
@@ -182,7 +182,7 @@ static inline void at86rf2xx_fb_read(const at86rf2xx_t *dev, uint8_t *data, size
182182
void at86rf2xx_fb_read(const at86rf2xx_t *dev, uint8_t *data, size_t len);
183183
#endif
184184
/**
185-
* @brief Stop a read transcation internal frame buffer of the given device
185+
* @brief Stop a read transaction internal frame buffer of the given device
186186
*
187187
* Release the SPI device and unlock frame buffer protection.
188188
*

drivers/atwinc15x0/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The WiFi module ATWINC15x0 is connected via SPI and supports SPI clock speeds
4949
of up to 48 MHz. Although the module also has an I2C and a UART interface,
5050
these interfaces are only used for debugging.
5151

52-
The ATWINC15x0 WiFi module implements a complete TCP/IP procotol stack which is
52+
The ATWINC15x0 WiFi module implements a complete TCP/IP protocol stack which is
5353
not used in RIOT.
5454

5555
### Driver Details

drivers/include/enc28j60.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ typedef struct {
4848
*/
4949
typedef struct {
5050
netdev_t netdev; /**< pull in the netdev fields */
51-
enc28j60_params_t p; /**< SPI and pin confiuration */
51+
enc28j60_params_t p; /**< SPI and pin configuration */
5252
mutex_t lock; /**< lock the device on access */
5353
uint32_t tx_time; /**< last transmission time for timeout handling */
5454
} enc28j60_t;

drivers/include/ltc4150.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ extern const ltc4150_recorder_t ltc4150_last_minute;
239239
* @brief Initialize the LTC4150 driver
240240
*
241241
* @param dev Device to initialize
242-
* @param params Information on how the LTC4150 is conntected
242+
* @param params Information on how the LTC4150 is connected
243243
*
244244
* @retval 0 Success
245245
* @retval -EINVAL Called with invalid argument(s)

drivers/sdmmc/sdmmc_sdhc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ static int _xfer_prepare(sdmmc_dev_t *dev, sdmmc_xfer_desc_t *xfer)
484484
/* TODO: at the moment only 32-bit words supported */
485485
assert((xfer->block_size % sizeof(uint32_t)) == 0);
486486

487-
/* indicate that a data transfer is perpared */
487+
/* indicate that a data transfer is prepared */
488488
sdhc_dev->data_transfer = true;
489489

490490
uint32_t tmr;

pkg/tlsf/contrib/native.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @brief Definitions to use tlsf as malloc on native.
1616
* @author Juan I Carrano
1717
*
18-
* This assumes glibc is bein used.
18+
* This assumes glibc is being used.
1919
* see: https://www.gnu.org/software/libc/manual/html_node/Replacing-malloc.html
2020
*
2121
*/

pkg/uwb-core/include/dpl/dpl_eventq.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern "C" {
3333
* @brief dpl event wrapper
3434
*/
3535
struct dpl_event {
36-
struct os_event ev; /**< the envent */
36+
struct os_event ev; /**< the event */
3737
};
3838

3939
/**

0 commit comments

Comments
 (0)