Skip to content

Commit 1473395

Browse files
committed
Require latest ESP32-S3 firmware.
1 parent 44f9f69 commit 1473395

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SerialPrograms/Source/Controllers/SerialPABotBase/SerialPABotBase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const std::map<
129129
}},
130130
}},
131131
}},
132-
{2025041400, {
132+
{2025041403, {
133133
{PABB_PID_PABOTBASE_ESP32S3, {
134134
{ControllerType::NintendoSwitch_WiredProController, {
135135
ControllerFeature::TickPrecise,

SerialPrograms/Source/Controllers/SerialPABotBase/SerialPABotBase_Connection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ ControllerModeStatus SerialPABotBase_Connection::controller_mode_status() const{
124124
const std::map<uint32_t, std::map<ControllerType, ControllerFeatures>>&
125125
SerialPABotBase_Connection::get_programs_for_protocol(uint32_t protocol){
126126
// (protocol_requested / 100) == (protocol_device / 100)
127-
// (protocol_requested % 100) <= (protocol_device / 100)
127+
// (protocol_requested % 100) <= (protocol_device % 100)
128128
auto iter = SUPPORTED_VERSIONS.upper_bound(protocol);
129129
if (iter == SUPPORTED_VERSIONS.begin()){
130130
throw SerialProtocolException(

0 commit comments

Comments
 (0)