generated from 32blit/32blit-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now they can be overwritten without editing the file
- Loading branch information
1 parent
251e5dc
commit 30e5676
Showing
3 changed files
with
36 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#pragma once | ||
|
||
#ifdef PICO_BUILD | ||
// default to fast | ||
#ifndef PICO_INTERP | ||
#define PICO_INTERP 1 | ||
#endif | ||
|
||
#ifndef PICO_MULTICORE | ||
#define PICO_MULTICORE 1 | ||
#endif | ||
#else | ||
// not a pico so these make no sense | ||
#undef PICO_INTERP | ||
#undef PICO_MULTICORE | ||
#endif |
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