Skip to content

Commit 311502c

Browse files
committed
More Picos!
1 parent fd6f3ce commit 311502c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Common/SerialPABotBase/SerialPABotBase_Protocol_IDs.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ typedef uint8_t pabb_ProgramID;
3636
#define PABB_PID_PABOTBASE_ESP32S3 0x12
3737

3838
// Raspberry Pi
39-
#define PABB_PID_PABOTBASE_PicoW_USB 0x20
40-
#define PABB_PID_PABOTBASE_PicoW_UART 0x21
39+
#define PABB_PID_PABOTBASE_Pico1W_USB 0x20
40+
#define PABB_PID_PABOTBASE_Pico1W_UART 0x21
41+
#define PABB_PID_PABOTBASE_Pico2W_USB 0x22
42+
#define PABB_PID_PABOTBASE_Pico2W_UART 0x23
4143

4244

4345
//

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace PokemonAutomation{
2626
const bool IS_BETA_VERSION = true;
2727
const int PROGRAM_VERSION_MAJOR = 0;
2828
const int PROGRAM_VERSION_MINOR = 57;
29-
const int PROGRAM_VERSION_PATCH = 3;
29+
const int PROGRAM_VERSION_PATCH = 4;
3030

3131
const std::string PROGRAM_VERSION_BASE =
3232
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/Controllers/SerialPABotBase/SerialPABotBase.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ const std::map<pabb_ProgramID, uint32_t>& SUPPORTED_DEVICES(){
2323
{PABB_PID_PABOTBASE_TeensyPP2, 2025090300},
2424
{PABB_PID_PABOTBASE_ESP32, 2025090302},
2525
{PABB_PID_PABOTBASE_ESP32S3, 2025090300},
26+
{PABB_PID_PABOTBASE_Pico1W_USB, 2025090401},
27+
{PABB_PID_PABOTBASE_Pico1W_UART, 2025090401},
28+
{PABB_PID_PABOTBASE_Pico2W_USB, 2025090401},
29+
{PABB_PID_PABOTBASE_Pico2W_UART, 2025090401},
2630
};
2731
return database;
2832
}

0 commit comments

Comments
 (0)