Skip to content

Commit

Permalink
fix for serial debugging on an ESP32
Browse files Browse the repository at this point in the history
  • Loading branch information
corrados committed Apr 24, 2023
1 parent c6e1025 commit 4902d68
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions edrumulus.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ void setup()
&number_pads,
&status_LED_pin );

#if defined ( USE_SERIAL_DEBUG_PLOTTING ) && defined ( ESP_PLATFORM )
number_pads = min ( number_pads, 7 ); // only max. 7 pads are supported for ESP32 serial debug plotting
#endif
#ifdef USE_MIDI
MYMIDI.begin();
#endif
Expand Down

0 comments on commit 4902d68

Please sign in to comment.