Skip to content

Commit 87a181a

Browse files
committed
Enforce new firmware for fixing retry/reset race condition.
1 parent 66e2f2f commit 87a181a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ namespace PokemonAutomation{
2525

2626
const bool IS_BETA_VERSION = true;
2727
const int PROGRAM_VERSION_MAJOR = 0;
28-
const int PROGRAM_VERSION_MINOR = 57;
29-
const int PROGRAM_VERSION_PATCH = 4;
28+
const int PROGRAM_VERSION_MINOR = 58;
29+
const int PROGRAM_VERSION_PATCH = 1;
3030

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

SerialPrograms/Source/Controllers/SerialPABotBase/SerialPABotBase.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ const std::map<pabb_ProgramID, uint32_t>& SUPPORTED_DEVICES(){
2121
{PABB_PID_PABOTBASE_ProMicro, 2025090300},
2222
{PABB_PID_PABOTBASE_Teensy2, 2025090300},
2323
{PABB_PID_PABOTBASE_TeensyPP2, 2025090300},
24-
{PABB_PID_PABOTBASE_ESP32, 2025092302},
25-
{PABB_PID_PABOTBASE_ESP32S3, 2025090302},
26-
{PABB_PID_PABOTBASE_Pico1W_USB, 2025090404},
27-
{PABB_PID_PABOTBASE_Pico1W_UART, 2025090404},
28-
{PABB_PID_PABOTBASE_Pico2W_USB, 2025090404},
29-
{PABB_PID_PABOTBASE_Pico2W_UART, 2025090404},
24+
{PABB_PID_PABOTBASE_ESP32, 2025092303},
25+
{PABB_PID_PABOTBASE_ESP32S3, 2025090303},
26+
{PABB_PID_PABOTBASE_Pico1W_USB, 2025090405},
27+
{PABB_PID_PABOTBASE_Pico1W_UART, 2025090405},
28+
{PABB_PID_PABOTBASE_Pico2W_USB, 2025090405},
29+
{PABB_PID_PABOTBASE_Pico2W_UART, 2025090405},
3030
};
3131
return database;
3232
}

0 commit comments

Comments
 (0)