diff options
author | Christian Cunningham <cc@localhost> | 2022-03-24 18:52:56 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-24 18:52:56 -0700 |
commit | 7753da66d7d72f441dadd76f357fd5ceb50e7c8f (patch) | |
tree | c79cee644108ecb65952eff2104127a19e72d0c4 /include/usr | |
parent | 78493b1d441ef888910cf958a16f260bc3c1a7bd (diff) |
Modularize Userspace
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 |