1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-12-24 13:21:23 +01:00

protect ringstream typo fix

This commit is contained in:
Harald Barth 2021-11-07 00:12:11 +01:00
parent 55c7a0a1e8
commit c02e976c9f
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define GITHUB_SHA "ESP32-20211106-03:03" #define GITHUB_SHA "ESP32-20211107-00:09"

View File

@ -31,7 +31,7 @@ RingStream::RingStream( const uint16_t len)
_mark=0; _mark=0;
_count=0; _count=0;
#if defined(ARDUINO_ARCH_ESP32) #if defined(ARDUINO_ARCH_ESP32)
portMUX_TYPE _bufMux = portMUX_INITIALIZER_UNLOCKED; _bufMux = portMUX_INITIALIZER_UNLOCKED;
#endif #endif
} }