Skip to content

Commit 71a92ff

Browse files
ports: Fix SparkFun capitalization.
1 parent 79abdad commit 71a92ff

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

docs/library/wm8960.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -358,13 +358,13 @@ Run WM8960 on a MIMXRT10xx_DEV board in secondary mode (default)::
358358
sysclk_source=wm8960.SYSCLK_MCLK)
359359

360360

361-
Record with a Sparkfun WM8960 breakout board with Teensy in secondary mode (default)::
361+
Record with a SparkFun WM8960 breakout board with Teensy in secondary mode (default)::
362362

363363
# Micro_python WM8960 Codec driver
364364
#
365365
# The breakout board uses a fixed 24MHz MCLK. Therefore the internal
366366
# PLL must be used as sysclk, which is the master audio clock.
367-
# The Sparkfun board has the WS pins for RX and TX connected on the
367+
# The SparkFun board has the WS pins for RX and TX connected on the
368368
# board. Therefore adc_sync must be set to sync_adc, to configure
369369
# it's ADCLRC pin as input.
370370
#
@@ -379,11 +379,11 @@ Record with a Sparkfun WM8960 breakout board with Teensy in secondary mode (defa
379379
right_input=wm8960.INPUT_CLOSED)
380380

381381

382-
Play with a Sparkfun WM8960 breakout board with Teensy in secondary mode (default)::
382+
Play with a SparkFun WM8960 breakout board with Teensy in secondary mode (default)::
383383

384384
# The breakout board uses a fixed 24MHz MCLK. Therefore the internal
385385
# PLL must be used as sysclk, which is the master audio clock.
386-
# The Sparkfun board has the WS pins for RX and TX connected on the
386+
# The SparkFun board has the WS pins for RX and TX connected on the
387387
# board. Therefore adc_sync must be set to sync_adc, to configure
388388
# it's ADCLRC pin as input.
389389

docs/samd/pinout.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ Default pin assignments:
892892

893893
There seems to be no default pin assignment for this board.
894894

895-
Sparkfun SAMD51 Thing Plus pin assignment table
895+
SparkFun SAMD51 Thing Plus pin assignment table
896896
------------------------------------------------
897897

898898
=== ==== ============ ==== ==== ==== ====== ====== ===== ===== =====

ports/samd/boards/SPARKFUN_SAMD51_THING_PLUS/board.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"sparkfun_samd51_thing_plus.jpg"
1414
],
1515
"mcu": "samd51",
16-
"product": "Sparkfun SAMD51 Thing Plus",
16+
"product": "SparkFun SAMD51 Thing Plus",
1717
"thumbnail": "",
1818
"url": "https://www.sparkfun.com/products/14713",
19-
"vendor": "Sparkfun"
19+
"vendor": "SparkFun"
2020
}

ports/samd/boards/SPARKFUN_SAMD51_THING_PLUS/mpconfigboard.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define MICROPY_HW_BOARD_NAME "Sparkfun SAMD51 Thing Plus"
1+
#define MICROPY_HW_BOARD_NAME "SparkFun SAMD51 Thing Plus"
22
#define MICROPY_HW_MCU_NAME "SAMD51J20A"
33

44
#define MICROPY_HW_XOSC32K (1)

ports/samd/modmachine.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#define DBL_TAP_ADDR ((volatile uint32_t *)(HSRAM_ADDR + HSRAM_SIZE - 4))
4343
#endif
4444
// A board may define a DPL_TAP_ADDR_ALT, which will be set as well
45-
// Needed at the moment for Sparkfun SAMD51 Thing Plus
45+
// Needed at the moment for SparkFun SAMD51 Thing Plus
4646
#define DBL_TAP_MAGIC_LOADER 0xf01669ef
4747
#define DBL_TAP_MAGIC_RESET 0xf02669ef
4848

ports/stm32/boards/SPARKFUN_MICROMOD_STM32/board.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"product": "Micromod STM32",
1212
"thumbnail": "",
1313
"url": "",
14-
"vendor": "Sparkfun"
14+
"vendor": "SparkFun"
1515
}

ports/stm32/boards/SPARKFUN_MICROMOD_STM32/mpconfigboard.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// The Sparkfun MicroMod spec uses a zero-based peripheral numbering scheme.
1+
// The SparkFun MicroMod spec uses a zero-based peripheral numbering scheme.
22
// In cases where the 0th peripheral is the default, the "0" is omitted from
33
// the name (e.g. "I2C" instead of "I2C0").
44
//

0 commit comments

Comments
 (0)