Skip to content

Commit

Permalink
Update Validate.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Langer committed Aug 1, 2020
1 parent 3d98abb commit 5f12f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Multiprotocol/Validate.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#if not defined(ARDUINO_AVR_PRO) && not defined(ARDUINO_MULTI_NO_BOOT) && not defined(ARDUINO_MULTI_FLASH_FROM_TX) && not defined(ARDUINO_AVR_MINI) && not defined(ARDUINO_AVR_NANO) && not defined(ARDUINO_AVR_DUEMILANOVE)
#error You must select one of these boards: "Multi 4-in-1", "Arduino Pro or Pro Mini" or "Arduino Mini"
#endif
#if F_CPU != 16000000L || not defined(__AVR_ATmega328P__)
#if F_CPU != 16000000L || not (defined(__AVR_ATmega328P__) || defined(__AVR_ATmega168__))
#error You must select the processor type "ATmega328(5V, 16MHz)"
#endif
#endif
Expand Down

0 comments on commit 5f12f99

Please sign in to comment.