Fix for STM32F105 startup hang

This commit is contained in:
Andy CA6JAU 2018-08-06 14:53:47 -04:00
parent c2e785cdc4
commit f8ab4fe9bd
5 changed files with 13 additions and 3 deletions

View file

@ -32,7 +32,11 @@ Boston, MA 02110-1301, USA.
#include <Arduino.h>
#endif
#if defined(STM32F105xC)
const uint16_t SERIAL_RINGBUFFER_SIZE = 370U;
#else
const uint16_t SERIAL_RINGBUFFER_SIZE = 1000U;
#endif
class CSerialRB {
public: