Merge pull request #7574 from jpconstantineau/PyKey87-LED-Fix

minor update to boards.c to fix mismatched number of Neopixels
This commit is contained in:
Scott Shawcroft 2023-02-13 10:06:53 -08:00 committed by GitHub
commit c8b58050d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@
void reset_board(void) {
// turn off any left over LED
board_reset_user_neopixels(&pin_GPIO29, 62);
board_reset_user_neopixels(&pin_GPIO29, 19);
}
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.

View File

@ -31,7 +31,7 @@
void reset_board(void) {
// turn off any left over LED
board_reset_user_neopixels(&pin_GPIO29, 62);
board_reset_user_neopixels(&pin_GPIO29, 45);
}
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.

View File

@ -31,7 +31,7 @@
void reset_board(void) {
// turn off any left over LED
board_reset_user_neopixels(&pin_GPIO29, 62);
board_reset_user_neopixels(&pin_GPIO29, 88);
}
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.