mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-04-05 06:26:42 +00:00
Fix for STM32F105 startup hang
This commit is contained in:
parent
c2e785cdc4
commit
f8ab4fe9bd
5 changed files with 13 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue