2013-05-16 23:03:38 +00:00
|
|
|
/*
|
|
|
|
* Raspberry Pi support library for the ACK
|
|
|
|
* © 2013 David Given
|
|
|
|
* This file is redistributable under the terms of the 3-clause BSD license.
|
|
|
|
* See the file 'Copying' in the root of the distribution for the full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBSYS_H
|
|
|
|
#define LIBSYS_H
|
|
|
|
|
|
|
|
extern void _sys_rawwrite(unsigned char b);
|
|
|
|
extern unsigned char _sys_rawread(void);
|
2013-06-09 21:16:30 +00:00
|
|
|
extern int _sys_rawpoll(void);
|
2013-05-16 23:03:38 +00:00
|
|
|
|
|
|
|
extern void _sys_write_tty(char c);
|
|
|
|
|
2013-05-30 22:19:55 +00:00
|
|
|
extern int _sys_ttyflags;
|
2013-05-16 23:03:38 +00:00
|
|
|
|
|
|
|
#endif
|