-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
37 additions
and
10 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 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,27 @@ | ||
|
||
#if !defined(GIT_VERSION) | ||
#define GIT_VERSION __DATE__ | ||
#endif | ||
|
||
#if !defined(ARDUINO_VARIANT) | ||
#if defined(CORE_TEENSY) | ||
#define ARDUINO_VARIANT "teensy" | ||
#define ARDUINO_BOARD "teensy board" | ||
#else | ||
#define ARDUINO_VARIANT "undefined" | ||
#endif | ||
#endif | ||
|
||
#if !defined(ARDUINO_BOARD) | ||
#define ARDUINO_BOARD "undefined board" | ||
#endif | ||
|
||
#if !defined(PANO_PLATFORM) | ||
#if defined(PLATFORM_PANOCONTROLLER_V4) | ||
#define PANO_PLATFORM "PanoController V4" | ||
#elif defined(PLATFORM_GIGAPAN) | ||
#define PANO_PLATFORM "Gigapan Epic 100" | ||
#elif defined(PLATFORM_MECHA_E1) | ||
#define PANO_PLATFORM "Nodal Ninja MECHA E1" | ||
#endif | ||
#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