diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-12-26 15:44:10 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-12-26 15:44:10 +0000 |
commit | 6026b9128b3e9095375224731dd95e70c3edc206 (patch) | |
tree | 4b6973cf662422ba104ab4c101560492560cffeb /LUFA/Drivers/Peripheral | |
parent | c05e7cd7d9ec8cb593e837ba9928a02c3449e55f (diff) | |
download | lufa-6026b9128b3e9095375224731dd95e70c3edc206.tar.gz lufa-6026b9128b3e9095375224731dd95e70c3edc206.tar.bz2 lufa-6026b9128b3e9095375224731dd95e70c3edc206.zip |
Fix compile errors from the changes to the SerialStream and board Temperature drivers.
Diffstat (limited to 'LUFA/Drivers/Peripheral')
-rw-r--r-- | LUFA/Drivers/Peripheral/SerialStream.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/LUFA/Drivers/Peripheral/SerialStream.h b/LUFA/Drivers/Peripheral/SerialStream.h index 3ea165066..577d67537 100644 --- a/LUFA/Drivers/Peripheral/SerialStream.h +++ b/LUFA/Drivers/Peripheral/SerialStream.h @@ -97,6 +97,13 @@ #endif /* Public Interface - May be used in end-application: */ + /* External Variables: */ + /** Named stream for the USART, once \ref SerialStream_Init() has been called. This may be used with the + * file based stream functions (fprintf, fscanf, etc.) that require a handle to the stream rather than + * using the stdin and stdout named streams. + */ + extern FILE USARTStream; + /* Inline Functions: */ /** Initialises the serial stream (and regular USART driver) so that both the stream and regular * USART driver functions can be used. Must be called before any stream or regular USART functions. @@ -121,13 +128,6 @@ Serial_ShutDown(); } - /* External Variables: */ - /** Named stream for the USART, once \ref SerialStream_Init() has been called. This may be used with the - * file based stream functions (fprintf, fscanf, etc.) that require a handle to the stream rather than - * using the stdin and stdout named streams. - */ - extern FILE USARTStream; - /* Disable C linkage for C++ Compilers: */ #if defined(__cplusplus) } |