diff options
author | jaseg <git@jaseg.net> | 2018-07-17 15:43:26 +0200 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2018-07-17 15:43:26 +0200 |
commit | 6df66b77ba5b27bce5630694742f2dac57b8d3eb (patch) | |
tree | fc14370fdea41b6d7a672758aa89886b9107f78c /shared/trace.h | |
parent | 90ce052d82daa86e1e86ab4dac7fbba0cdda8680 (diff) | |
download | olsndot-6df66b77ba5b27bce5630694742f2dac57b8d3eb.tar.gz olsndot-6df66b77ba5b27bce5630694742f2dac57b8d3eb.tar.bz2 olsndot-6df66b77ba5b27bce5630694742f2dac57b8d3eb.zip |
Isolate usb-serial-rs485 tree
Diffstat (limited to 'shared/trace.h')
-rw-r--r-- | shared/trace.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/shared/trace.h b/shared/trace.h deleted file mode 100644 index b18cc11..0000000 --- a/shared/trace.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * trace support - * Karl Palsson <karlp@tweak.net.au> - */ - -#ifndef TRACE_H -#define TRACE_H - -#include <stdint.h> - -#ifdef __cplusplus -extern "C" { -#endif - -void trace_send_blocking8(int stimulus_port, char c); -void trace_send8(int stimulus_port, char c); - -void trace_send_blocking16(int stimulus_port, uint16_t val); -void trace_send16(int stimulus_port, uint16_t val); - -void trace_send_blocking32(int stimulus_port, uint32_t val); -void trace_send32(int stimulus_port, uint32_t val); - - -#ifdef __cplusplus -} -#endif - -#endif /* TRACE_H */ - |