From 13787e553c36f001cbaf54cf5cf176d9a467e6e5 Mon Sep 17 00:00:00 2001 From: michael carter Date: Mon, 26 Jul 2021 17:34:09 +0100 Subject: [PATCH 1/5] add reboot to control buttons --- RX_FSK/RX_FSK.ino | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/RX_FSK/RX_FSK.ino b/RX_FSK/RX_FSK.ino index 4c4fec2..49ba631 100644 --- a/RX_FSK/RX_FSK.ino +++ b/RX_FSK/RX_FSK.ino @@ -418,15 +418,15 @@ const char *createSondeHubMap() { if (!sonde.config.sondehub.active) { strcat(ptr, "
NOTE: SondeHub uploading is not enabled, detected sonde will not be visable on map
"); if ((*s->ser == 0) && (strcmp(sonde.config.sondehub.lat,"null"))) { - sprintf(ptr + strlen(ptr), "", sonde.config.sondehub.lat, sonde.config.sondehub.lon); + sprintf(ptr + strlen(ptr), "", sonde.config.sondehub.lat, sonde.config.sondehub.lon); } else { - sprintf(ptr + strlen(ptr), "", s-> ser); + sprintf(ptr + strlen(ptr), "", s-> ser); } } else { if ((*s->ser == 0) && (strcmp(sonde.config.sondehub.lat,"null"))) { - sprintf(ptr, "", sonde.config.sondehub.lat, sonde.config.sondehub.lon); + sprintf(ptr, "", sonde.config.sondehub.lat, sonde.config.sondehub.lon); } else { - sprintf(ptr, "", s-> ser); + sprintf(ptr, "", s-> ser); } } HTMLBODYEND(ptr); @@ -783,23 +783,24 @@ const char *handleConfigPost(AsyncWebServerRequest *request) { return ""; } -const char *ctrlid[] = {"rx", "scan", "spec", "wifi", "rx2", "scan2", "spec2", "wifi2"}; +const char *ctrlid[] = {"rx", "scan", "spec", "wifi", "rx2", "scan2", "spec2", "wifi2", "reboot"}; const char *ctrllabel[] = {"Receiver/next freq. (short keypress)", "Scanner (double keypress)", "Spectrum (medium keypress)", "WiFi (long keypress)", - "Button 2/next screen (short keypress)", "Button 2 (double keypress)", "Button 2 (medium keypress)", "Button 2 (long keypress)" + "Button 2/next screen (short keypress)", "Button 2 (double keypress)", "Button 2 (medium keypress)", "Button 2 (long keypress)", + "Reboot" }; const char *createControlForm() { char *ptr = message; strcpy(ptr, HTMLHEAD); strcat(ptr, ""); HTMLBODY(ptr, "control.html"); - for (int i = 0; i < 8; i++) { + for (int i = 0; i < 9; i++) { strcat(ptr, ""); - if (i == 3) { + if (i == 3 || i == 7 ) { strcat(ptr, "

"); } } @@ -847,6 +848,10 @@ const char *handleControlPost(AsyncWebServerRequest *request) { Serial.println("equals wifi2"); button2.pressed = KP_LONG; } + else if (param.equals("reboot")) { + Serial.println("equals reboot"); + ESP.restart(); + } } return ""; } From 882d3c3a0f17c47995d97fa01647c3952fd2cecc Mon Sep 17 00:00:00 2001 From: michael carter Date: Mon, 16 Aug 2021 08:19:38 +0100 Subject: [PATCH 2/5] wait for all humidity calibration frames --- libraries/SondeLib/RS41.cpp | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/libraries/SondeLib/RS41.cpp b/libraries/SondeLib/RS41.cpp index c81fc50..62955fd 100644 --- a/libraries/SondeLib/RS41.cpp +++ b/libraries/SondeLib/RS41.cpp @@ -757,7 +757,7 @@ int RS41::decode41(byte *data, int maxlen) uint32_t pressureMain = getint24(data, 560, p+27); uint32_t pressureRef1 = getint24(data, 560, p+30); uint32_t pressureRef2 = getint24(data, 560, p+33); - #if 0 + #if 1 Serial.printf( "External temp: tempMeasMain = %ld, tempMeasRef1 = %ld, tempMeasRef2 = %ld\n", tempMeasMain, tempMeasRef1, tempMeasRef2 ); Serial.printf( "Rel Humidity: humidityMain = %ld, humidityRef1 = %ld, humidityRef2 = %ld\n", humidityMain, humidityRef1, humidityRef2 ); Serial.printf( "Humid sensor: tempHumiMain = %ld, tempHumiRef1 = %ld, tempHumiRef2 = %ld\n", tempHumiMain, tempHumiRef1, tempHumiRef2 ); @@ -787,6 +787,36 @@ int RS41::decode41(byte *data, int maxlen) } if ( validHumidity && validExternalTemperature ) { + #if 1 + // write complete calibration values + Serial.println( "************* All calibration values ********************") + Serial.printf( "refResistorLow: %f, refResistorHigh: %f\n", refResistorLow, refResistorHigh ); + Serial.printf( "refCapLow: %f, refCapHigh: %f\n", refCapLow, refCapHigh ); + for ( int i = 0; i < sizeof(taylorT); i++) { + Serial.printf( "taylorT[%d]: %f\n", i, taylorT[i] ); + } + Serial.printf( "calT: %f\n", calT ); + for ( int i = 0; i < sizeof(polyT); i++) { + Serial.printf( "polyT[%d]: %f\n", i, polyT[i] ); + } + for ( int i = 0; i < sizeof(calibU); i++) { + Serial.printf( "calibU[%d]: %f\n", i, calibU[i] ); + } + for ( int i = 0; i < sizeof(matrixU) / sizeof(matrixU[0]); i++) { + for ( j = 0; j < sizeof(matrixU[0]); j++) + Serial.printf( "matrixU[%d,%d]: %f\n", i, matrixU[i][j] ); + } + } + for ( int i = 0; i < sizeof(taylorTU); i++) { + Serial.printf( "taylorTU[%d]: %f\n", i, taylorTU[i] ); + } + Serial.printf( "calTU: %f\n", calTU ); + for ( int i = 0; i < sizeof(polyTrh); i++) { + Serial.printf( "polyTrh[%d]: %f\n", i, polyTrh[i] ); + } + Serial.println( "**********************************************************") + #endif + sonde.si()->tempRHSensor = GetRATemp( tempHumiMain, tempHumiRef1, tempHumiRef2, calibration->value.calTU, calibration->value.taylorTU, calibration->value.polyTrh ); Serial.printf("Humidity Sensor temperature = %f\n", sonde.si()->tempRHSensor ); From df62fc0d7952af2cbe3b1e6e09acd5507218e522 Mon Sep 17 00:00:00 2001 From: mycarda Date: Thu, 16 Sep 2021 10:23:01 +0100 Subject: [PATCH 3/5] testing updates --- libraries/SondeLib/RS41.cpp | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/libraries/SondeLib/RS41.cpp b/libraries/SondeLib/RS41.cpp index 62955fd..c81fc50 100644 --- a/libraries/SondeLib/RS41.cpp +++ b/libraries/SondeLib/RS41.cpp @@ -757,7 +757,7 @@ int RS41::decode41(byte *data, int maxlen) uint32_t pressureMain = getint24(data, 560, p+27); uint32_t pressureRef1 = getint24(data, 560, p+30); uint32_t pressureRef2 = getint24(data, 560, p+33); - #if 1 + #if 0 Serial.printf( "External temp: tempMeasMain = %ld, tempMeasRef1 = %ld, tempMeasRef2 = %ld\n", tempMeasMain, tempMeasRef1, tempMeasRef2 ); Serial.printf( "Rel Humidity: humidityMain = %ld, humidityRef1 = %ld, humidityRef2 = %ld\n", humidityMain, humidityRef1, humidityRef2 ); Serial.printf( "Humid sensor: tempHumiMain = %ld, tempHumiRef1 = %ld, tempHumiRef2 = %ld\n", tempHumiMain, tempHumiRef1, tempHumiRef2 ); @@ -787,36 +787,6 @@ int RS41::decode41(byte *data, int maxlen) } if ( validHumidity && validExternalTemperature ) { - #if 1 - // write complete calibration values - Serial.println( "************* All calibration values ********************") - Serial.printf( "refResistorLow: %f, refResistorHigh: %f\n", refResistorLow, refResistorHigh ); - Serial.printf( "refCapLow: %f, refCapHigh: %f\n", refCapLow, refCapHigh ); - for ( int i = 0; i < sizeof(taylorT); i++) { - Serial.printf( "taylorT[%d]: %f\n", i, taylorT[i] ); - } - Serial.printf( "calT: %f\n", calT ); - for ( int i = 0; i < sizeof(polyT); i++) { - Serial.printf( "polyT[%d]: %f\n", i, polyT[i] ); - } - for ( int i = 0; i < sizeof(calibU); i++) { - Serial.printf( "calibU[%d]: %f\n", i, calibU[i] ); - } - for ( int i = 0; i < sizeof(matrixU) / sizeof(matrixU[0]); i++) { - for ( j = 0; j < sizeof(matrixU[0]); j++) - Serial.printf( "matrixU[%d,%d]: %f\n", i, matrixU[i][j] ); - } - } - for ( int i = 0; i < sizeof(taylorTU); i++) { - Serial.printf( "taylorTU[%d]: %f\n", i, taylorTU[i] ); - } - Serial.printf( "calTU: %f\n", calTU ); - for ( int i = 0; i < sizeof(polyTrh); i++) { - Serial.printf( "polyTrh[%d]: %f\n", i, polyTrh[i] ); - } - Serial.println( "**********************************************************") - #endif - sonde.si()->tempRHSensor = GetRATemp( tempHumiMain, tempHumiRef1, tempHumiRef2, calibration->value.calTU, calibration->value.taylorTU, calibration->value.polyTrh ); Serial.printf("Humidity Sensor temperature = %f\n", sonde.si()->tempRHSensor ); From e14915fbcc0d0d860646f33bad2e159994cdf5c7 Mon Sep 17 00:00:00 2001 From: eben80 Date: Fri, 17 Sep 2021 11:47:14 +0200 Subject: [PATCH 4/5] Fix padding on menu icon (#168) This is to fix alignment issues. --- RX_FSK/data/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RX_FSK/data/style.css b/RX_FSK/data/style.css index 3d52bdf..04e254f 100755 --- a/RX_FSK/data/style.css +++ b/RX_FSK/data/style.css @@ -300,6 +300,8 @@ p{ /* Hide the link that should open and close the topnav on small screens */ .topnav .icon { display: none; + padding-bottom: 12px; + padding-top: 11px; } /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */ From 35493aaffd4ad582d2c68b8ce646f2b8f25527d1 Mon Sep 17 00:00:00 2001 From: michael carter Date: Fri, 17 Sep 2021 11:11:25 +0100 Subject: [PATCH 5/5] Updated relative humidity calculation to include pressure --- RX_FSK/src/RS41.cpp | 68 ++++++++++++++++++++++++++------------------- 1 file changed, 39 insertions(+), 29 deletions(-) diff --git a/RX_FSK/src/RS41.cpp b/RX_FSK/src/RS41.cpp index ac7c053..0bdb6eb 100644 --- a/RX_FSK/src/RS41.cpp +++ b/RX_FSK/src/RS41.cpp @@ -82,20 +82,21 @@ struct subframeBuffer { float f152; uint8_t u156; - float f157; /* 0x157: ?? (Initialized by same value as calibU) */ - uint8_t reserved15B[0x160-0x15B]; + float f157; /* 0x157: ?? (Initialized by same value as calibU[0]) */ + uint8_t reserved15B; /* 0x15B: */ + uint32_t reserved15C; /* 0x15C: */ float f160[35]; - uint8_t startIWDG; /* 0x1EC: If ==0 or ==2: Watchdog IWDG will not be started */ + uint8_t startIWDG; /* 0x1EC: If ==1 or ==2: Watchdog IWDG will not be started */ uint8_t parameterSetupDone; /* 0x1ED: Set (!=0) if parameter setup was done */ - uint8_t reserved1EE; - uint8_t reserved1EF; + uint8_t enableTestMode; /* 0x1EE: Test mode (service menu) (0=disabled, 1=enabled) */ + uint8_t enableTX; /* 0x1EF: 0=TX disabled, 1=TX enabled (maybe this is autostart?) */ float f1F0[8]; float pressureLaunchSite[2]; /* 0x210: Pressure [hPa] at launch site */ - struct { + struct __attribute__((__packed__)){ char variant[10]; /* 0x218: Sonde variant (e.g. "RS41-SG") */ uint8_t mainboard[10]; /* 0x222: Name of mainboard (e.g. "RSM412") */ } names; - struct { + struct __attribute__((__packed__)){ uint8_t mainboard[9]; /* 0x22C: Serial number of mainboard (e.g. "L1123553") */ uint8_t text235[12]; /* 0x235: "0000000000" */ uint16_t reserved241; /* 0x241: */ @@ -103,8 +104,7 @@ struct subframeBuffer { uint16_t reserved24B; /* 0x24B: */ } serials; uint16_t reserved24D; /* 0x24D: */ - uint8_t reserved24F; - uint8_t reserved250; + uint16_t reserved24F; /* 0x24F: */ uint16_t reserved251; /* 0x251: (Init value = 0x21A = 538) */ uint8_t xdataUartBaud; /* 0x253: 1=9k6, 2=19k2, 3=38k4, 4=57k6, 5=115k2 */ uint8_t reserved254; @@ -112,7 +112,9 @@ struct subframeBuffer { uint8_t reserved259; uint8_t reserved25A[0x25E -0x25A]; float matrixP[18]; /* 0x25E: Coefficients for pressure sensor polynomial */ - float f2A6[17]; + float vectorBp[3]; /* 0x2A6: */ + uint8_t reserved2B2[8]; /* 0x2B2: */ + float matrixBt[12]; /* 0x2BA: */ uint8_t reserved2EA[0x2FA-0x2EA]; uint16_t halfword2FA[9]; float reserved30C; @@ -510,6 +512,7 @@ void ProcessSubframe( byte *subframeBytes, int subframeNumber ) { s = (struct subframeBuffer *)malloc( sizeof(struct subframeBuffer) ); if(!s) { Serial.println("ProcessSubframe: out of memory"); return; } sonde.si()->extra = s; + s->valid = 0; } memcpy( s->rawData+16*subframeNumber, subframeBytes, 16); s->valid |= (1ULL << subframeNumber); @@ -600,17 +603,36 @@ float GetRAHumidity( uint32_t humCurrent, uint32_t humMin, uint32_t humMax, floa /* Compute absolute capacitance from the known references */ float C = calibration->value.refCapLow + (calibration->value.refCapHigh - calibration->value.refCapLow) * current; + /* Apply calibration */ float Cp = ( C / calibration->value.calibU[0] - 1.0f) * calibration->value.calibU[1]; - int j, k; + /* Compensation for low temperature and pressure at altitude */ + float estimatedPressure = 1013.25f * expf(-1.18575919e-4f * sonde.si()->alt ); + + float Tp = (sensorTemp - 20.0f) / 180.0f; float sum = 0; + float powc = 1.0f; + float p = estimatedPressure / 1000.0f; + for ( int i = 0; i < 3; i++) { + float l = 0; + float powt = 1.0f; + for ( int j = 0; j < 4; j++) { + l += calibration->value.matrixBt[4*i+j] * powt; + powt *= Tp; + } + float x = calibration->value.vectorBp[i]; + sum += l * (x * p / (1.0f + x * p) - x * powc / (1.0f + x)); + powc *= Cp; + } + Cp -= sum; + float xj = 1.0f; - for (j = 0; j < 7; j++) { + for ( int j = 0; j < 7; j++) { float yk = 1.0f; - for (k = 0; k < 6; k++) { + for ( int k = 0; k < 6; k++) { sum += xj * yk * calibration->value.matrixU[j][k]; - yk *= ( sensorTemp - 20.0f) / 180.0f; + yk *= Tp; } xj *= Cp; } @@ -747,21 +769,9 @@ int RS41::decode41(byte *data, int maxlen) Serial.printf( "Pressure sens: pressureMain = %ld, pressureRef1 = %ld, pressureRef2 = %ld\n", pressureMain, pressureRef1, pressureRef2 ); #endif struct subframeBuffer *calibration = (struct subframeBuffer *)sonde.si()->extra; -#if 0 - // for a valid temperature, require rLow rHigh (frames 3 4) TaylorT (frames 4 5), polyT (frames 5 6 7), - validExternalTemperature = subframeReceived[3] && subframeReceived[4] && subframeReceived[5] - && subframeReceived[6] && subframeReceived[7]; - - // for a valid RA humidity, valid temperature, calibU (frame 7) matrixU (frame 7-12), taylorTU (frame 12 13), - // calTU (frame 13) polyTrh (frame 13 14) - validHumidity = validExternalTemperature && subframeReceived[0x08] && subframeReceived[0x09] && subframeReceived[0x0A] - && subframeReceived[0x0B] && subframeReceived[0x0C] && subframeReceived[0x0D] && subframeReceived[0x0E] - && subframeReceived[0x0F] && subframeReceived[0x10] && subframeReceived[0x11] && subframeReceived[0x12]; -#else - // check for bits 3, 4, 5, 6, and 7 set - bool validExternalTemperature = calibration!=NULL && (calibration->valid & 0xF8) == 0xF8; - bool validHumidity = calibration!=NULL && (calibration->valid & 0x7FF8) == 0x7FF8; -#endif + // check for bits 3 through 20 set and 37 through 46 + bool validExternalTemperature = calibration!=NULL && (calibration->valid & 0xF8) == 0xF8; + bool validHumidity = calibration!=NULL && (calibration->valid & 0x7FE0001FFFF8) == 0x7FE0001FFFF8; if ( validExternalTemperature ) { sonde.si()->temperature = GetRATemp( tempMeasMain, tempMeasRef1, tempMeasRef2,