Skip to content

Commit 0a0c028

Browse files
committed
Enforce new firmware.
1 parent 08b2519 commit 0a0c028

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

SerialPrograms/Source/Controllers/SerialPABotBase/SerialPABotBase.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const std::map<
9292
std::map<ControllerType, ControllerFeatures>
9393
>
9494
> SUPPORTED_VERSIONS{
95-
{2025061202, {
95+
{2025061205, {
9696
{PABB_PID_PABOTBASE_ESP32, {
9797
{ControllerType::NintendoSwitch_WirelessProController, {
9898
ControllerFeature::TickPrecise,
@@ -111,7 +111,7 @@ const std::map<
111111
}},
112112
}},
113113
}},
114-
{2025061304, {
114+
{2025061306, {
115115
{PABB_PID_PABOTBASE_ESP32S3, {
116116
{ControllerType::NintendoSwitch_WiredProController, {
117117
ControllerFeature::TickPrecise,
@@ -121,7 +121,7 @@ const std::map<
121121
}},
122122
}},
123123
}},
124-
{2025061404, {
124+
{2025061405, {
125125
{PABB_PID_PABOTBASE_ArduinoUnoR3, {
126126
{ControllerType::NintendoSwitch_WiredProController, {
127127
ControllerFeature::TickPrecise,

SerialPrograms/Source/NintendoSwitch/Controllers/SysbotBase/SysbotBase_Connection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ ControllerModeStatus TcpSysbotBase_Connection::controller_mode_status() const{
109109
}
110110

111111
void TcpSysbotBase_Connection::write_data(const std::string& data){
112-
WriteSpinLock lg(m_send_lock);
112+
WriteSpinLock lg(m_send_lock, "TcpSysbotBase_Connection::write_data()");
113113
// cout << "Sending: " << data << endl;
114114
m_socket.blocking_send(data.data(), data.size());
115115
}

0 commit comments

Comments
 (0)