aboutsummaryrefslogtreecommitdiff
path: root/c/arduino/framing.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/arduino/framing.h')
-rw-r--r--c/arduino/framing.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/arduino/framing.h b/c/arduino/framing.h
index daacba7..fc2cd12 100644
--- a/c/arduino/framing.h
+++ b/c/arduino/framing.h
@@ -9,9 +9,9 @@ extern "C" {
#include <inttypes.h>
#define MAX_FRAME_SIZE 128
-#define FRAME_ESCAPE 0x02
-#define FRAME_START 0x03
-#define FRAME_STOP 0x10
+#define FRAME_ESCAPE 0x10
+#define FRAME_START 0x02
+#define FRAME_STOP 0x03
typedef enum {
WAITING,