Browse Source

Fix debug pirnt and magic key.(M0110)

core
tmk 11 years ago
parent
commit
4a91891e94
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      protocol/m0110.c

+ 1
- 1
protocol/m0110.c View File

m0110_send(M0110_INSTANT); m0110_send(M0110_INSTANT);
uint8_t data = m0110_recv(); uint8_t data = m0110_recv();
if (data != M0110_NULL) { if (data != M0110_NULL) {
phex(data); print(" ");
debug_hex(data); debug(" ");
} }
return data; return data;
} }