Skip to content

ports: Fix SparkFun capitalization. #17258

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/library/wm8960.rst
Original file line number Diff line number Diff line change
Expand Up @@ -358,13 +358,13 @@ Run WM8960 on a MIMXRT10xx_DEV board in secondary mode (default)::
sysclk_source=wm8960.SYSCLK_MCLK)


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

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


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

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

Expand Down
2 changes: 1 addition & 1 deletion docs/samd/pinout.rst
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ Default pin assignments:

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

Sparkfun SAMD51 Thing Plus pin assignment table
SparkFun SAMD51 Thing Plus pin assignment table
------------------------------------------------

=== ==== ============ ==== ==== ==== ====== ====== ===== ===== =====
Expand Down
4 changes: 2 additions & 2 deletions ports/samd/boards/SPARKFUN_SAMD51_THING_PLUS/board.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"sparkfun_samd51_thing_plus.jpg"
],
"mcu": "samd51",
"product": "Sparkfun SAMD51 Thing Plus",
"product": "SparkFun SAMD51 Thing Plus",
"thumbnail": "",
"url": "https://www.sparkfun.com/products/14713",
"vendor": "Sparkfun"
"vendor": "SparkFun"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define MICROPY_HW_BOARD_NAME "Sparkfun SAMD51 Thing Plus"
#define MICROPY_HW_BOARD_NAME "SparkFun SAMD51 Thing Plus"
#define MICROPY_HW_MCU_NAME "SAMD51J20A"

#define MICROPY_HW_XOSC32K (1)
Expand Down
2 changes: 1 addition & 1 deletion ports/samd/modmachine.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#define DBL_TAP_ADDR ((volatile uint32_t *)(HSRAM_ADDR + HSRAM_SIZE - 4))
#endif
// A board may define a DPL_TAP_ADDR_ALT, which will be set as well
// Needed at the moment for Sparkfun SAMD51 Thing Plus
// Needed at the moment for SparkFun SAMD51 Thing Plus
#define DBL_TAP_MAGIC_LOADER 0xf01669ef
#define DBL_TAP_MAGIC_RESET 0xf02669ef

Expand Down
2 changes: 1 addition & 1 deletion ports/stm32/boards/SPARKFUN_MICROMOD_STM32/board.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"product": "Micromod STM32",
"thumbnail": "",
"url": "",
"vendor": "Sparkfun"
"vendor": "SparkFun"
}
2 changes: 1 addition & 1 deletion ports/stm32/boards/SPARKFUN_MICROMOD_STM32/mpconfigboard.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// The Sparkfun MicroMod spec uses a zero-based peripheral numbering scheme.
// The SparkFun MicroMod spec uses a zero-based peripheral numbering scheme.
// In cases where the 0th peripheral is the default, the "0" is omitted from
// the name (e.g. "I2C" instead of "I2C0").
//
Expand Down
Loading