diff options
author | tmk <nobody@nowhere> | 2013-09-21 21:35:13 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-09-21 21:35:13 +0900 |
commit | 6ccea742deb84451a5815e40ccfc3aaa74feb622 (patch) | |
tree | 0c724d7951bdc1d5103d06dc5682ba54228e1b1f /protocol | |
parent | b2c7529ec9dce2d1f32f0c3e228059092f5f2238 (diff) | |
parent | 6cf6ddceb14851902aa62c82cee91d0419bf5b27 (diff) |
Merge branch 'm0110_next'
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/m0110.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocol/m0110.c b/protocol/m0110.c index 8bf7cfe4fe..9b53ec2cd6 100644 --- a/protocol/m0110.c +++ b/protocol/m0110.c @@ -91,10 +91,11 @@ uint8_t m0110_error = 0; void m0110_init(void) { - uint8_t data; idle(); _delay_ms(1000); +/* Not needed to initialize in fact. + uint8_t data; m0110_send(M0110_MODEL); data = m0110_recv(); print("m0110_init model: "); phex(data); print("\n"); @@ -102,6 +103,7 @@ void m0110_init(void) m0110_send(M0110_TEST); data = m0110_recv(); print("m0110_init test: "); phex(data); print("\n"); +*/ } uint8_t m0110_send(uint8_t data) |