Skip to content

Commit

Permalink
Merge pull request #104 from rovo89/fix_typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
ClemensElflein committed Jun 16, 2024
2 parents f47feeb + 91aa567 commit 280771d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/LowLevel/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void updateEmergency() {
uint8_t emergency_state = 0;

// Handle emergency "Stop" buttons
if (emergency_read && LL_EMERGENCY_BITS_STOP) {
if (emergency_read & LL_EMERGENCY_BITS_STOP) {
// If we just pressed, store the timestamp
if (button_emergency_started == 0) {
button_emergency_started = millis();
Expand Down

0 comments on commit 280771d

Please sign in to comment.