-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid throttle down by using picow_fast board def
- Loading branch information
Showing
5 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Board config file for overclocked Pico W | ||
|
||
// The below lines aren't just comments - they're directives to the Pico SDK cmake system | ||
// pico_cmake_set PICO_PLATFORM = rp2040 | ||
// pico_cmake_set PICO_CYW43_SUPPORTED = 1 | ||
|
||
#ifndef _BOARDS_PICOW_FAST_H | ||
#define _BOARDS_PICOW_FAST_H | ||
|
||
// Allow extra time for xosc to start. | ||
#define PICO_XOSC_STARTUP_DELAY_MULTIPLIER 64 | ||
|
||
// Slower flash to assist restarts when flashing on the fly | ||
#define PICO_FLASH_SPI_CLKDIV 4 | ||
|
||
#include "boards/pico_w.h" | ||
#endif |