Browse Source

uart: fix building when disabled

pull/2552/head
Maxim Prokhorov 1 year ago
parent
commit
3eaba2883d
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      code/espurna/main.cpp

+ 3
- 1
code/espurna/main.cpp View File

@ -114,7 +114,9 @@ void setup() {
settingsSetup();
// Init hardware / software UART ports
uartSetup();
#if UART_SUPPORT
uartSetup();
#endif
// Configure logger and crash recorder
#if DEBUG_SUPPORT


Loading…
Cancel
Save