Added preprocessor checks and documentation to the bootloaders giving information about missing SIGNATURE_x defines due to outdated avr-libc versions.
This commit is contained in:
parent
557a945ba1
commit
cb7884da50
8 changed files with 36 additions and 10 deletions
|
@ -48,6 +48,11 @@
|
|||
|
||||
#include <LUFA/Drivers/USB/USB.h> // USB Functionality
|
||||
|
||||
/* Preprocessor Checks: */
|
||||
#if !defined(SIGNATURE_0) || !defined(SIGNATURE_1) || !defined(SIGNATURE_2)
|
||||
#error Device signature byte constants are not defined due to outdated avr-libc version. See demo documentation.
|
||||
#endif
|
||||
|
||||
/* Macros: */
|
||||
/** CDC Class Specific request to get the line encoding on a CDC-ACM virtual serial port, including the
|
||||
* baud rate, parity, stop bits and data bits.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue