diff options
author | tmk <nobody@nowhere> | 2013-09-21 15:45:42 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-09-21 15:45:42 +0900 |
commit | febdf10602fa4057e0ac3b60096e053ac1aad9be (patch) | |
tree | 78d79062d6f0ba86bf72cd311608c138e3d9e36d /protocol | |
parent | 22315fcdf9982c975484892adf3a2aa8a56e5b6e (diff) |
Remove procedures not neeed from init of M0110
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) |