aboutsummaryrefslogtreecommitdiff
path: root/arduino/ace_old/physical.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/physical.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/physical.h')
-rw-r--r--arduino/ace_old/physical.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/arduino/ace_old/physical.h b/arduino/ace_old/physical.h
deleted file mode 100644
index 74272ff..0000000
--- a/arduino/ace_old/physical.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef PHYSICAL_H
-#define PHYSICAL_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <inttypes.h>
-#define SERIAL_BUFFER_SIZE 64
-
-void init_physical_layer(uint32_t baud);
-void to_physical_layer(uint8_t s); //implemented in physical
-void from_physical_layer(uint8_t r); //should be implemented in link
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
-#endif /* PHYSICAL_H */