aboutsummaryrefslogtreecommitdiff
path: root/arduino/ace_old/link.h
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2013-02-26 16:38:19 +0100
committerJakob Odersky <jodersky@gmail.com>2013-02-26 16:38:19 +0100
commit5d4fd43bbccd3b1da97d3139b95eab9173777bef (patch)
treee0c4afeda484259bf725f25c3d891e30853ee8dd /arduino/ace_old/link.h
parentac31762b462f37d49999daae8dba7763d8d870b3 (diff)
downloadace-5d4fd43bbccd3b1da97d3139b95eab9173777bef.tar.gz
ace-5d4fd43bbccd3b1da97d3139b95eab9173777bef.tar.bz2
ace-5d4fd43bbccd3b1da97d3139b95eab9173777bef.zip
remove old c/c++ implementations
Diffstat (limited to 'arduino/ace_old/link.h')
-rw-r--r--arduino/ace_old/link.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/arduino/ace_old/link.h b/arduino/ace_old/link.h
deleted file mode 100644
index 797145e..0000000
--- a/arduino/ace_old/link.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef LINK_H
-#define LINK_H
-
-#include <inttypes.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define MAX_PACKET_SIZE 256
-
-typedef struct {
- uint8_t* data;
- uint16_t length;
-} packet;
-
-void to_link_layer(packet* s); //implemented in link
-void from_link_layer(packet* r); //should be implemented in transport
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
-#endif /* LINK_H */