Browse Source

Don't do the BRG divisor analysis for SOFT_UART targets.
(and improve the check that does happen for SOFT_UART.)

WestfW 6 years ago
parent
commit
b1b897766d
2 changed files with 12 additions and 2 deletions
  1. 3 2
      optiboot/bootloaders/optiboot/Makefile
  2. 9 0
      optiboot/bootloaders/optiboot/optiboot.c

+ 3 - 2
optiboot/bootloaders/optiboot/Makefile

@@ -629,10 +629,11 @@ include Makefile.2560
 include Makefile.tiny
 include Makefile.MCUdude
 
+BAUDCHECK=
 ifndef PRODUCTION
+ifndef SOFT_UART
 BAUDCHECK= baudcheck
-else
-BAUDCHECK=
+endif
 endif
 
 #---------------------------------------------------------------------------

+ 9 - 0
optiboot/bootloaders/optiboot/optiboot.c

@@ -331,6 +331,7 @@ typedef union {
 #define UART 0
 #endif
 
+#ifndef SOFT_UART
 #ifdef SINGLESPEED
 /* Single speed option */
 #define BAUD_SETTING (( (F_CPU + BAUD_RATE * 8L) / ((BAUD_RATE * 16L))) - 1 )
@@ -364,6 +365,7 @@ typedef union {
 #error Unachievable baud rate (too fast) BAUD_RATE 
 #endif
 #endif // baud rate fast check
+#endif // SOFT_UART
 
 /* Watchdog settings */
 #define WATCHDOG_OFF    (0)
@@ -982,6 +984,13 @@ uint8_t getch(void) {
 #if UART_B_VALUE > 255
 #error Baud rate too slow for soft UART
 #endif
+#if UART_B_VALUE < 6
+// (this value is a "guess" at when loop/call overhead might become too
+//  significant for the soft uart to work.  It tests OK with the popular
+//  "ATtinycore" chips that need SOFT_UART, at the usual clock/baud combos.)
+#error Baud rate too high for soft UART
+#endif
+
 
 void uartDelay() {
   __asm__ __volatile__ (