diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2016-04-09 10:56:10 +0200 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2016-04-09 10:56:10 +0200 |
commit | e75fb7c47b640ea329984d95fc9f4b2d7cd3efe4 (patch) | |
tree | 934466a0df6bd76828ede2ccd8e4115657409723 /arduino/logs.h | |
parent | 9aae804a259aca17e7ca48b2dd18e12dde2c21fd (diff) |
because arduino is sooooooo frustrating
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'arduino/logs.h')
-rw-r--r-- | arduino/logs.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/arduino/logs.h b/arduino/logs.h deleted file mode 100644 index 4124d03..0000000 --- a/arduino/logs.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef LOGS_H -#define LOGS_H - -#include <stdarg.h> - -#if 0 -enum { - OPCODE_LOGS = 0x89, - OPCODE_OK = 0x70, - OPCODE_ERR = 0x70, -}; - -#define serial_log serial_log_puts - -#define serial_log_puts(_str) serial_puts(OPCODE_LOGS, _str); -#define serial_log_print_dec(_int) serial_print_dec(OPCODE_LOGS, _int) -#define serial_log_print_hex(_int) serial_print_dec(OPCODE_LOGS, _int) - -#define serial_ok(_str) serial_puts(OPCODE_OK, _str); -#define serial_err(_str) serial_puts(OPCODE_ERR, _str); - -#endif - -int serial_puts(const char *str); -int serial_put_string(const char *str); -int serial_write(uint8_t value); -int serial_printf(const char *str, ...); - -#if 0 -int serial_print_dec(uint8_t opcode, int32_t integer); -int serial_print_hex(uint8_t opcode, int32_t integer); -#endif - -#endif - - - |