X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/fhem-stuff/blobdiff_plain/777ef62192dfdcd183a162d5ab71792a2444693e..222456d4edba28dede43232231fee62df2a45880:/culfw/culfw-asksin-fix.diff diff --git a/culfw/culfw-asksin-fix.diff b/culfw/culfw-asksin-fix.diff index 04dab92..168ad47 100644 --- a/culfw/culfw-asksin-fix.diff +++ b/culfw/culfw-asksin-fix.diff @@ -2,21 +2,23 @@ Index: clib/rf_asksin.c =================================================================== --- clib/rf_asksin.c (revision 373) +++ clib/rf_asksin.c (working copy) -@@ -11,7 +11,7 @@ +@@ -11,8 +11,8 @@ uint8_t asksin_on = 0; -const uint8_t PROGMEM ASKSIN_CFG[50] = { +- 0x00, 0x07, +const uint8_t PROGMEM ASKSIN_CFG[] = { - 0x00, 0x07, ++ 0x00, 0x01, 0x02, 0x2e, 0x03, 0x0d, -@@ -26,16 +26,17 @@ + 0x04, 0xE9, +@@ -26,18 +26,21 @@ 0x11, 0x93, 0x12, 0x03, 0x15, 0x34, - 0x17, 0x30, // always go into IDLE -+ 0x17, 0x3F, // always go into RX, CCA, ELV uses 0x03 ++ 0x17, 0x33, // go into RX after TX, CCA; ELV uses 0x03 0x18, 0x18, 0x19, 0x16, 0x1B, 0x43, @@ -31,8 +33,12 @@ Index: clib/rf_asksin.c + 0x3e, 0xc3 }; ++static void rf_asksin_reset_rx(void); ++ void -@@ -56,18 +57,16 @@ + rf_asksin_init(void) + { +@@ -56,20 +59,27 @@ my_delay_us(100); // load configuration @@ -54,24 +60,53 @@ Index: clib/rf_asksin.c + ccRX(); } ++static void ++rf_asksin_reset_rx(void) ++{ ++ ccStrobe( CC1100_SFRX ); ++ ccStrobe( CC1100_SIDLE ); ++ ccStrobe( CC1100_SNOP ); ++ ccStrobe( CC1100_SRX ); ++} ++ void -@@ -97,14 +96,10 @@ + rf_asksin_task(void) + { +@@ -83,12 +93,14 @@ + + // see if a CRC OK pkt has been arrived + if (bit_is_set( CC1100_IN_PORT, CC1100_IN_PIN )) { +- + enc[0] = cc1100_readReg( CC1100_RXFIFO ) & 0x7f; // read len + +- if (enc[0]>=MAX_ASKSIN_MSG) +- enc[0] = MAX_ASKSIN_MSG-1; +- ++ if (enc[0] >= MAX_ASKSIN_MSG) { ++ // Something went horribly wrong, out of sync? ++ rf_asksin_reset_rx(); ++ return; ++ } ++ + CC1100_ASSERT; + cc1100_sendbyte( CC1100_READ_BURST | CC1100_RXFIFO ); + +@@ -97,12 +109,10 @@ } rssi = cc1100_sendbyte( 0 ); -+ /* LQI = */ cc1100_sendbyte( 0 ); - +- ++ l = cc1100_sendbyte( 0 ); ++ CC1100_DEASSERT; - ccStrobe( CC1100_SFRX ); - ccStrobe( CC1100_SIDLE ); - ccStrobe( CC1100_SNOP ); -- ccStrobe( CC1100_SRX ); -- + ccStrobe( CC1100_SRX ); + dec[0] = enc[0]; - dec[1] = (~enc[1]) ^ 0x89; - -@@ -113,7 +108,6 @@ +@@ -113,7 +123,6 @@ dec[l] = enc[l] ^ dec[2]; @@ -79,11 +114,22 @@ Index: clib/rf_asksin.c if (tx_report & REP_BINTIME) { DC('a'); -@@ -133,24 +127,14 @@ +@@ -131,26 +140,17 @@ + + DNL(); } ++ } - return; +- return; - ++ switch(cc1100_readReg( CC1100_MARCSTATE )) { ++ case MARCSTATE_RXFIFO_OVERFLOW: ++ ccStrobe( CC1100_SFRX ); ++ case MARCSTATE_IDLE: ++ ccStrobe( CC1100_SIDLE ); ++ ccStrobe( CC1100_SNOP ); ++ ccStrobe( CC1100_SRX ); ++ break; } - - @@ -100,17 +146,11 @@ Index: clib/rf_asksin.c - break; - - } - -+ if (cc1100_readReg( CC1100_MARCSTATE ) == MARCSTATE_RXFIFO_OVERFLOW) { -+ ccStrobe( CC1100_SFRX ); -+ ccStrobe( CC1100_SIDLE ); -+ ccStrobe( CC1100_SNOP ); -+ ccStrobe( CC1100_SRX ); -+ } +- } void -@@ -173,20 +157,7 @@ +@@ -173,20 +173,7 @@ my_delay_ms(3); // 3ms: Found by trial and error } @@ -131,7 +171,7 @@ Index: clib/rf_asksin.c enc[0] = dec[0]; enc[1] = (~dec[1]) ^ 0x89; -@@ -195,6 +166,15 @@ +@@ -195,6 +182,15 @@ enc[l] = dec[l] ^ dec[2]; @@ -147,7 +187,7 @@ Index: clib/rf_asksin.c // send CC1100_ASSERT; cc1100_sendbyte(CC1100_WRITE_BURST | CC1100_TXFIFO); -@@ -205,12 +185,17 @@ +@@ -205,12 +201,17 @@ CC1100_DEASSERT;