diff options
Diffstat (limited to 'include/usr')
-rw-r--r-- | include/usr/string.h | 6 | ||||
-rw-r--r-- | include/usr/timed.h | 7 | ||||
-rw-r--r-- | include/usr/uart.h | 6 |
3 files changed, 19 insertions, 0 deletions
diff --git a/include/usr/string.h b/include/usr/string.h new file mode 100644 index 0000000..7da44a8 --- /dev/null +++ b/include/usr/string.h @@ -0,0 +1,6 @@ +#ifndef USR_STRING_H +#define USR_STRING_H + +char* ulong_to_string(unsigned long value, char* data); + +#endif diff --git a/include/usr/timed.h b/include/usr/timed.h new file mode 100644 index 0000000..f3f941a --- /dev/null +++ b/include/usr/timed.h @@ -0,0 +1,7 @@ +#ifndef USR_TIMED_H +#define USR_TIMED_H + +void loop(void); +void loopt(void); + +#endif diff --git a/include/usr/uart.h b/include/usr/uart.h new file mode 100644 index 0000000..2214012 --- /dev/null +++ b/include/usr/uart.h @@ -0,0 +1,6 @@ +#ifndef USR_UART_H +#define USR_UART_H + +void handle_data(unsigned char data); + +#endif |