You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When #define ENABLE_SERVO is enabled on the Raspberry Pi Pico, the board fails to start.
The issue occurs because MAX_SERVOS is defined as 8, while TOTAL_PINS is 30. This causes an out-of-range access in the ServoFirmata::reset() function.
I'm not using servos in my project, so I have disabled this functionality. As a result, I cannot confirm the exact behavior in detail.
The text was updated successfully, but these errors were encountered:
When
#define ENABLE_SERVO
is enabled on the Raspberry Pi Pico, the board fails to start.The issue occurs because
MAX_SERVOS
is defined as 8, whileTOTAL_PINS
is 30. This causes an out-of-range access in theServoFirmata::reset()
function.I'm not using servos in my project, so I have disabled this functionality. As a result, I cannot confirm the exact behavior in detail.
The text was updated successfully, but these errors were encountered: