diff --git a/Modem/protocol/mp1.c b/Modem/protocol/mp1.c index 72f501d..39c39b8 100644 --- a/Modem/protocol/mp1.c +++ b/Modem/protocol/mp1.c @@ -117,14 +117,13 @@ void mp1Poll(MP1 *mp1) { // the end of the packet. Pass control to the // decoder. if ((mp1->checksum_in & 0xff) == 0x00) { - kprintf("[OK] "); mp1Decode(mp1); } else { // Checksum was incorrect, we don't do anything, // but you can enable the decode anyway, if you // need it for testing or debugging - kprintf("[ER] [%d] ", mp1->checksum_in); - mp1Decode(mp1); + // kprintf("[ER] [%d] ", mp1->checksum_in); + //mp1Decode(mp1); } } // If the above is not the case, this must be the diff --git a/buildrev.h b/buildrev.h index fae7086..fb6a824 100644 --- a/buildrev.h +++ b/buildrev.h @@ -1,2 +1,2 @@ -#define VERS_BUILD 829 +#define VERS_BUILD 830 #define VERS_HOST "vixen"