13 lines
185 B
C
13 lines
185 B
C
//Copyright 2011 Charles Lohr under the MIT/X11 License.
|
|
|
|
#ifndef _PRINTFS_H
|
|
#define _PRINTFS_H
|
|
|
|
#define PRINTF_BUFFER_SIZE 128
|
|
|
|
void SetupPrintf();
|
|
|
|
void SPIPutChar( char c );
|
|
|
|
#endif
|