Skip to content
Open
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
3 changes: 2 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ constexpr auto bundleVersionInterface =
/*SP8 Venice SLT boards*/
#define ROBIN 174 // 0xAE
#define SANDPIPER 175 // 0xAF
#define PEACOCK 184 // 0xB8
#define DUCK 162 // 0xA2
#define DUCK_1 163 // 0xA3
#define DUCK_2 164 // 0xA4
Expand Down Expand Up @@ -478,7 +479,7 @@ bool PlatformIDValidation(std::string BoardName)
}
else if ((board_id == EAGLE) || (board_id == EAGLE_1) ||
(board_id == EAGLE_2) || (board_id == ROBIN) ||
(board_id == SANDPIPER))
(board_id == SANDPIPER) || (board_id == PEACOCK))
{
PlatformName = "Eagle";
}
Expand Down