Fix compile errors from the changes to the SerialStream and board Temperature drivers.
This commit is contained in:
parent
c05e7cd7d9
commit
6026b9128b
4 changed files with 16 additions and 13 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue