aboutsummaryrefslogtreecommitdiff
path: root/arduino/ace/ace.h
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2013-02-26 16:44:22 +0100
committerJakob Odersky <jodersky@gmail.com>2013-02-26 16:44:22 +0100
commite8e5650006961593559b57176c4d2916b5c32d4e (patch)
tree4d93ffef4ba1439cec0b3f15928963ddd88cc6e7 /arduino/ace/ace.h
parenta9ef6d2ce9ab5f8f7d5d7993fa281f89e756d09a (diff)
downloadace-e8e5650006961593559b57176c4d2916b5c32d4e.tar.gz
ace-e8e5650006961593559b57176c4d2916b5c32d4e.tar.bz2
ace-e8e5650006961593559b57176c4d2916b5c32d4e.zip
restructure c implementation directory
Diffstat (limited to 'arduino/ace/ace.h')
-rw-r--r--arduino/ace/ace.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/arduino/ace/ace.h b/arduino/ace/ace.h
deleted file mode 100644
index 75b178c..0000000
--- a/arduino/ace/ace.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef ACE_H
-#define ACE_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <stdbool.h>
-#include <inttypes.h>
-#include "framing.h"
-#include "arq.h"
-
-#define SERIAL_BUFFER_SIZE 64
-
-void init_ace0(uint32_t baud, uint32_t extra_time);
-void ace_send0(uint8_t size, const uint8_t* const message);
-void ace_event0(message_event event, int16_t size, const uint8_t* const message);
-
-#define init_ace init_ace0
-#define ace_send ace_send0
-#define ace_event ace_event0
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
-#endif /* ACE_H */