mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-06 19:49:19 +00:00
Log cleanups
change log levels, shorten log messages, delete commented out logs
This commit is contained in:
parent
a628c93125
commit
450e951284
@ -50,9 +50,6 @@ class GPSStatus : public Status
|
|||||||
int32_t getLatitude() const
|
int32_t getLatitude() const
|
||||||
{
|
{
|
||||||
if (config.position.fixed_position) {
|
if (config.position.fixed_position) {
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_WARN("Using fixed latitude");
|
|
||||||
#endif
|
|
||||||
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(nodeDB->getNodeNum());
|
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(nodeDB->getNodeNum());
|
||||||
return node->position.latitude_i;
|
return node->position.latitude_i;
|
||||||
} else {
|
} else {
|
||||||
@ -63,9 +60,6 @@ class GPSStatus : public Status
|
|||||||
int32_t getLongitude() const
|
int32_t getLongitude() const
|
||||||
{
|
{
|
||||||
if (config.position.fixed_position) {
|
if (config.position.fixed_position) {
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_WARN("Using fixed longitude");
|
|
||||||
#endif
|
|
||||||
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(nodeDB->getNodeNum());
|
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(nodeDB->getNodeNum());
|
||||||
return node->position.longitude_i;
|
return node->position.longitude_i;
|
||||||
} else {
|
} else {
|
||||||
@ -76,9 +70,6 @@ class GPSStatus : public Status
|
|||||||
int32_t getAltitude() const
|
int32_t getAltitude() const
|
||||||
{
|
{
|
||||||
if (config.position.fixed_position) {
|
if (config.position.fixed_position) {
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_WARN("Using fixed altitude");
|
|
||||||
#endif
|
|
||||||
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(nodeDB->getNodeNum());
|
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(nodeDB->getNodeNum());
|
||||||
return node->position.altitude;
|
return node->position.altitude;
|
||||||
} else {
|
} else {
|
||||||
@ -94,9 +85,6 @@ class GPSStatus : public Status
|
|||||||
|
|
||||||
bool matches(const GPSStatus *newStatus) const
|
bool matches(const GPSStatus *newStatus) const
|
||||||
{
|
{
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("GPSStatus.match() new pos@%x to old pos@%x", newStatus->p.timestamp, p.timestamp);
|
|
||||||
#endif
|
|
||||||
return (newStatus->hasLock != hasLock || newStatus->isConnected != isConnected ||
|
return (newStatus->hasLock != hasLock || newStatus->isConnected != isConnected ||
|
||||||
newStatus->isPowerSaving != isPowerSaving || newStatus->p.latitude_i != p.latitude_i ||
|
newStatus->isPowerSaving != isPowerSaving || newStatus->p.latitude_i != p.latitude_i ||
|
||||||
newStatus->p.longitude_i != p.longitude_i || newStatus->p.altitude != p.altitude ||
|
newStatus->p.longitude_i != p.longitude_i || newStatus->p.altitude != p.altitude ||
|
||||||
|
@ -12,7 +12,6 @@ void GpioVirtPin::set(bool value)
|
|||||||
|
|
||||||
void GpioHwPin::set(bool value)
|
void GpioHwPin::set(bool value)
|
||||||
{
|
{
|
||||||
// if (num == 3) LOG_DEBUG("Setting pin %d to %d", num, value);
|
|
||||||
pinMode(num, OUTPUT);
|
pinMode(num, OUTPUT);
|
||||||
digitalWrite(num, value);
|
digitalWrite(num, value);
|
||||||
}
|
}
|
||||||
@ -88,7 +87,6 @@ void GpioBinaryTransformer::update()
|
|||||||
newValue = (GpioVirtPin::PinState)(p1 && p2);
|
newValue = (GpioVirtPin::PinState)(p1 && p2);
|
||||||
break;
|
break;
|
||||||
case Or:
|
case Or:
|
||||||
// LOG_DEBUG("Doing GPIO OR");
|
|
||||||
newValue = (GpioVirtPin::PinState)(p1 || p2);
|
newValue = (GpioVirtPin::PinState)(p1 || p2);
|
||||||
break;
|
break;
|
||||||
case Xor:
|
case Xor:
|
||||||
|
@ -105,7 +105,6 @@ float AirTime::channelUtilizationPercent()
|
|||||||
uint32_t sum = 0;
|
uint32_t sum = 0;
|
||||||
for (uint32_t i = 0; i < CHANNEL_UTILIZATION_PERIODS; i++) {
|
for (uint32_t i = 0; i < CHANNEL_UTILIZATION_PERIODS; i++) {
|
||||||
sum += this->channelUtilization[i];
|
sum += this->channelUtilization[i];
|
||||||
// LOG_DEBUG("ChanUtilArray %u %u", i, this->channelUtilization[i]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (float(sum) / float(CHANNEL_UTILIZATION_PERIODS * 10 * 1000)) * 100;
|
return (float(sum) / float(CHANNEL_UTILIZATION_PERIODS * 10 * 1000)) * 100;
|
||||||
@ -208,14 +207,5 @@ int32_t AirTime::runOnce()
|
|||||||
this->utilizationTX[utilPeriodTX] = 0;
|
this->utilizationTX[utilPeriodTX] = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
LOG_DEBUG("utilPeriodTX %d TX Airtime %3.2f%", utilPeriodTX, airTime->utilizationTXPercent());
|
|
||||||
for (uint32_t i = 0; i < MINUTES_IN_HOUR; i++) {
|
|
||||||
LOG_DEBUG(
|
|
||||||
"%d,", this->utilizationTX[i]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
LOG_DEBUG("");
|
|
||||||
*/
|
|
||||||
return (1000 * 1);
|
return (1000 * 1);
|
||||||
}
|
}
|
@ -156,7 +156,7 @@ uint8_t GPS::makeCASPacket(uint8_t class_id, uint8_t msg_id, uint8_t payload_siz
|
|||||||
CASChecksum(UBXscratch, (payload_size + 10));
|
CASChecksum(UBXscratch, (payload_size + 10));
|
||||||
|
|
||||||
#if defined(GPS_DEBUG) && defined(DEBUG_PORT)
|
#if defined(GPS_DEBUG) && defined(DEBUG_PORT)
|
||||||
LOG_DEBUG("Constructed CAS packet: ");
|
LOG_DEBUG("CAS packet: ");
|
||||||
DEBUG_PORT.hexDump(MESHTASTIC_LOG_LEVEL_DEBUG, UBXscratch, payload_size + 10);
|
DEBUG_PORT.hexDump(MESHTASTIC_LOG_LEVEL_DEBUG, UBXscratch, payload_size + 10);
|
||||||
#endif
|
#endif
|
||||||
return (payload_size + 10);
|
return (payload_size + 10);
|
||||||
@ -286,7 +286,6 @@ GPS_RESPONSE GPS::getACK(uint8_t class_id, uint8_t msg_id, uint32_t waitMillis)
|
|||||||
while (Throttle::isWithinTimespanMs(startTime, waitMillis)) {
|
while (Throttle::isWithinTimespanMs(startTime, waitMillis)) {
|
||||||
if (ack > 9) {
|
if (ack > 9) {
|
||||||
#ifdef GPS_DEBUG
|
#ifdef GPS_DEBUG
|
||||||
LOG_DEBUG("");
|
|
||||||
LOG_INFO("Got ACK for class %02X message %02X in %d millis.", class_id, msg_id, millis() - startTime);
|
LOG_INFO("Got ACK for class %02X message %02X in %d millis.", class_id, msg_id, millis() - startTime);
|
||||||
#endif
|
#endif
|
||||||
return GNSS_RESPONSE_OK; // ACK received
|
return GNSS_RESPONSE_OK; // ACK received
|
||||||
@ -409,7 +408,6 @@ int GPS::getACK(uint8_t *buffer, uint16_t size, uint8_t requestedClass, uint8_t
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// LOG_WARN("No response for class %02X message %02X", requestedClass, requestedID);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -507,14 +505,14 @@ bool GPS::setup()
|
|||||||
msglen = makeCASPacket(0x06, 0x07, sizeof(_message_CAS_CFG_NAVX_CONF), _message_CAS_CFG_NAVX_CONF);
|
msglen = makeCASPacket(0x06, 0x07, sizeof(_message_CAS_CFG_NAVX_CONF), _message_CAS_CFG_NAVX_CONF);
|
||||||
_serial_gps->write(UBXscratch, msglen);
|
_serial_gps->write(UBXscratch, msglen);
|
||||||
if (getACKCas(0x06, 0x07, 250) != GNSS_RESPONSE_OK) {
|
if (getACKCas(0x06, 0x07, 250) != GNSS_RESPONSE_OK) {
|
||||||
LOG_WARN("ATGM336H - Could not set Configuration");
|
LOG_WARN("ATGM336H: Could not set Config");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the update frequence to 1Hz
|
// Set the update frequence to 1Hz
|
||||||
msglen = makeCASPacket(0x06, 0x04, sizeof(_message_CAS_CFG_RATE_1HZ), _message_CAS_CFG_RATE_1HZ);
|
msglen = makeCASPacket(0x06, 0x04, sizeof(_message_CAS_CFG_RATE_1HZ), _message_CAS_CFG_RATE_1HZ);
|
||||||
_serial_gps->write(UBXscratch, msglen);
|
_serial_gps->write(UBXscratch, msglen);
|
||||||
if (getACKCas(0x06, 0x04, 250) != GNSS_RESPONSE_OK) {
|
if (getACKCas(0x06, 0x04, 250) != GNSS_RESPONSE_OK) {
|
||||||
LOG_WARN("ATGM336H - Could not set Update Frequency");
|
LOG_WARN("ATGM336H: Could not set Update Frequency");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the NEMA output messages
|
// Set the NEMA output messages
|
||||||
@ -526,7 +524,7 @@ bool GPS::setup()
|
|||||||
msglen = makeCASPacket(0x06, 0x01, sizeof(cas_cfg_msg_packet), cas_cfg_msg_packet);
|
msglen = makeCASPacket(0x06, 0x01, sizeof(cas_cfg_msg_packet), cas_cfg_msg_packet);
|
||||||
_serial_gps->write(UBXscratch, msglen);
|
_serial_gps->write(UBXscratch, msglen);
|
||||||
if (getACKCas(0x06, 0x01, 250) != GNSS_RESPONSE_OK) {
|
if (getACKCas(0x06, 0x01, 250) != GNSS_RESPONSE_OK) {
|
||||||
LOG_WARN("ATGM336H - Could not enable NMEA MSG: %d", fields[i]);
|
LOG_WARN("ATGM336H: Could not enable NMEA MSG: %d", fields[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (gnssModel == GNSS_MODEL_UC6580) {
|
} else if (gnssModel == GNSS_MODEL_UC6580) {
|
||||||
@ -586,9 +584,9 @@ bool GPS::setup()
|
|||||||
msglen = makeUBXPacket(0x06, 0x09, sizeof(_message_SAVE), _message_SAVE);
|
msglen = makeUBXPacket(0x06, 0x09, sizeof(_message_SAVE), _message_SAVE);
|
||||||
_serial_gps->write(UBXscratch, msglen);
|
_serial_gps->write(UBXscratch, msglen);
|
||||||
if (getACK(0x06, 0x09, 2000) != GNSS_RESPONSE_OK) {
|
if (getACK(0x06, 0x09, 2000) != GNSS_RESPONSE_OK) {
|
||||||
LOG_WARN("Unable to save GNSS module configuration.");
|
LOG_WARN("Unable to save GNSS module config.");
|
||||||
} else {
|
} else {
|
||||||
LOG_INFO("GNSS module configuration saved!");
|
LOG_INFO("GNSS module config saved!");
|
||||||
}
|
}
|
||||||
} else if (IS_ONE_OF(gnssModel, GNSS_MODEL_UBLOX7, GNSS_MODEL_UBLOX8, GNSS_MODEL_UBLOX9)) {
|
} else if (IS_ONE_OF(gnssModel, GNSS_MODEL_UBLOX7, GNSS_MODEL_UBLOX8, GNSS_MODEL_UBLOX9)) {
|
||||||
if (gnssModel == GNSS_MODEL_UBLOX7) {
|
if (gnssModel == GNSS_MODEL_UBLOX7) {
|
||||||
@ -602,12 +600,12 @@ bool GPS::setup()
|
|||||||
|
|
||||||
if (getACK(0x06, 0x3e, 800) == GNSS_RESPONSE_NAK) {
|
if (getACK(0x06, 0x3e, 800) == GNSS_RESPONSE_NAK) {
|
||||||
// It's not critical if the module doesn't acknowledge this configuration.
|
// It's not critical if the module doesn't acknowledge this configuration.
|
||||||
LOG_INFO("reconfigure GNSS - defaults maintained. Is this module GPS-only?");
|
LOG_DEBUG("reconfigure GNSS - defaults maintained. Is this module GPS-only?");
|
||||||
} else {
|
} else {
|
||||||
if (gnssModel == GNSS_MODEL_UBLOX7) {
|
if (gnssModel == GNSS_MODEL_UBLOX7) {
|
||||||
LOG_INFO("GNSS configured for GPS+SBAS.");
|
LOG_INFO("GPS+SBAS configured.");
|
||||||
} else { // 8,9
|
} else { // 8,9
|
||||||
LOG_INFO("GNSS configured for GPS+SBAS+GLONASS+Galileo.");
|
LOG_INFO("GPS+SBAS+GLONASS+Galileo configured.");
|
||||||
}
|
}
|
||||||
// Documentation say, we need wait atleast 0.5s after reconfiguration of GNSS module, before sending next
|
// Documentation say, we need wait atleast 0.5s after reconfiguration of GNSS module, before sending next
|
||||||
// commands for the M8 it tends to be more... 1 sec should be enough ;>)
|
// commands for the M8 it tends to be more... 1 sec should be enough ;>)
|
||||||
@ -796,9 +794,6 @@ void GPS::writePinEN(bool on)
|
|||||||
|
|
||||||
// Write and log
|
// Write and log
|
||||||
enablePin->set(on);
|
enablePin->set(on);
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("Pin EN %s", val == HIGH ? "HIGH" : "LOW");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the value of the STANDBY pin, if relevant
|
// Set the value of the STANDBY pin, if relevant
|
||||||
@ -818,9 +813,6 @@ void GPS::writePinStandby(bool standby)
|
|||||||
// Write and log
|
// Write and log
|
||||||
pinMode(PIN_GPS_STANDBY, OUTPUT);
|
pinMode(PIN_GPS_STANDBY, OUTPUT);
|
||||||
digitalWrite(PIN_GPS_STANDBY, val);
|
digitalWrite(PIN_GPS_STANDBY, val);
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("Pin STANDBY %s", val == HIGH ? "HIGH" : "LOW");
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -852,9 +844,6 @@ void GPS::setPowerPMU(bool on)
|
|||||||
on ? PMU->enablePowerOutput(XPOWERS_LDO3) : PMU->disablePowerOutput(XPOWERS_LDO3);
|
on ? PMU->enablePowerOutput(XPOWERS_LDO3) : PMU->disablePowerOutput(XPOWERS_LDO3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("PMU %s", on ? "on" : "off");
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -869,9 +858,6 @@ void GPS::setPowerUBLOX(bool on, uint32_t sleepMs)
|
|||||||
if (on) {
|
if (on) {
|
||||||
gps->_serial_gps->write(0xFF);
|
gps->_serial_gps->write(0xFF);
|
||||||
clearBuffer(); // This often returns old data, so drop it
|
clearBuffer(); // This often returns old data, so drop it
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("UBLOX: wake");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// If putting to sleep
|
// If putting to sleep
|
||||||
@ -903,10 +889,6 @@ void GPS::setPowerUBLOX(bool on, uint32_t sleepMs)
|
|||||||
|
|
||||||
// Send the UBX packet
|
// Send the UBX packet
|
||||||
gps->_serial_gps->write(gps->UBXscratch, msglen);
|
gps->_serial_gps->write(gps->UBXscratch, msglen);
|
||||||
|
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("UBLOX: sleep for %dmS", sleepMs);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1028,7 +1010,7 @@ int32_t GPS::runOnce()
|
|||||||
GNSS_MODEL_UBLOX10)) {
|
GNSS_MODEL_UBLOX10)) {
|
||||||
// reset the GPS on next bootup
|
// reset the GPS on next bootup
|
||||||
if (devicestate.did_gps_reset && scheduling.elapsedSearchMs() > 60 * 1000UL && !hasFlow()) {
|
if (devicestate.did_gps_reset && scheduling.elapsedSearchMs() > 60 * 1000UL && !hasFlow()) {
|
||||||
LOG_DEBUG("GPS is not communicating, trying factory reset on next bootup.");
|
LOG_DEBUG("GPS is not communicating, trying factory reset on next boot.");
|
||||||
devicestate.did_gps_reset = false;
|
devicestate.did_gps_reset = false;
|
||||||
nodeDB->saveToDisk(SEGMENT_DEVICESTATE);
|
nodeDB->saveToDisk(SEGMENT_DEVICESTATE);
|
||||||
return disable(); // Stop the GPS thread as it can do nothing useful until next reboot.
|
return disable(); // Stop the GPS thread as it can do nothing useful until next reboot.
|
||||||
@ -1065,7 +1047,6 @@ int32_t GPS::runOnce()
|
|||||||
LOG_WARN("Couldn't publish a valid location: didn't get a GPS lock in time.");
|
LOG_WARN("Couldn't publish a valid location: didn't get a GPS lock in time.");
|
||||||
|
|
||||||
// Once we get a location we no longer desperately want an update
|
// Once we get a location we no longer desperately want an update
|
||||||
// LOG_DEBUG("gotLoc %d, tooLong %d, gotTime %d", gotLoc, tooLong, gotTime);
|
|
||||||
if ((gotLoc && gotTime) || tooLong) {
|
if ((gotLoc && gotTime) || tooLong) {
|
||||||
|
|
||||||
if (tooLong) {
|
if (tooLong) {
|
||||||
@ -1201,7 +1182,6 @@ GnssModel_t GPS::probe(int serialSpeed)
|
|||||||
|
|
||||||
uint16_t len = getACK(buffer, sizeof(buffer), 0x0A, 0x04, 1200);
|
uint16_t len = getACK(buffer, sizeof(buffer), 0x0A, 0x04, 1200);
|
||||||
if (len) {
|
if (len) {
|
||||||
// LOG_DEBUG("monver reply size = %d", len);
|
|
||||||
uint16_t position = 0;
|
uint16_t position = 0;
|
||||||
for (int i = 0; i < 30; i++) {
|
for (int i = 0; i < 30; i++) {
|
||||||
info.swVersion[i] = buffer[position];
|
info.swVersion[i] = buffer[position];
|
||||||
@ -1387,26 +1367,22 @@ bool GPS::factoryReset()
|
|||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x1C, 0xA2};
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x1C, 0xA2};
|
||||||
_serial_gps->write(_message_reset1, sizeof(_message_reset1));
|
_serial_gps->write(_message_reset1, sizeof(_message_reset1));
|
||||||
if (getACK(0x05, 0x01, 10000)) {
|
if (getACK(0x05, 0x01, 10000)) {
|
||||||
LOG_INFO(ACK_SUCCESS_MESSAGE);
|
LOG_DEBUG(ACK_SUCCESS_MESSAGE);
|
||||||
}
|
}
|
||||||
delay(100);
|
delay(100);
|
||||||
byte _message_reset2[] = {0xB5, 0x62, 0x06, 0x09, 0x0D, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00,
|
byte _message_reset2[] = {0xB5, 0x62, 0x06, 0x09, 0x0D, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00,
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1B, 0xA1};
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1B, 0xA1};
|
||||||
_serial_gps->write(_message_reset2, sizeof(_message_reset2));
|
_serial_gps->write(_message_reset2, sizeof(_message_reset2));
|
||||||
if (getACK(0x05, 0x01, 10000)) {
|
if (getACK(0x05, 0x01, 10000)) {
|
||||||
LOG_INFO(ACK_SUCCESS_MESSAGE);
|
LOG_DEBUG(ACK_SUCCESS_MESSAGE);
|
||||||
}
|
}
|
||||||
delay(100);
|
delay(100);
|
||||||
byte _message_reset3[] = {0xB5, 0x62, 0x06, 0x09, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
byte _message_reset3[] = {0xB5, 0x62, 0x06, 0x09, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0x1D, 0xB3};
|
0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0x1D, 0xB3};
|
||||||
_serial_gps->write(_message_reset3, sizeof(_message_reset3));
|
_serial_gps->write(_message_reset3, sizeof(_message_reset3));
|
||||||
if (getACK(0x05, 0x01, 10000)) {
|
if (getACK(0x05, 0x01, 10000)) {
|
||||||
LOG_INFO(ACK_SUCCESS_MESSAGE);
|
LOG_DEBUG(ACK_SUCCESS_MESSAGE);
|
||||||
}
|
}
|
||||||
// Reset device ram to COLDSTART state
|
|
||||||
// byte _message_CFG_RST_COLDSTART[] = {0xB5, 0x62, 0x06, 0x04, 0x04, 0x00, 0xFF, 0xB9, 0x00, 0x00, 0xC6, 0x8B};
|
|
||||||
// _serial_gps->write(_message_CFG_RST_COLDSTART, sizeof(_message_CFG_RST_COLDSTART));
|
|
||||||
// delay(1000);
|
|
||||||
} else if (gnssModel == GNSS_MODEL_MTK) {
|
} else if (gnssModel == GNSS_MODEL_MTK) {
|
||||||
// send the CAS10 to perform a factory restart of the device (and other device that support PCAS statements)
|
// send the CAS10 to perform a factory restart of the device (and other device that support PCAS statements)
|
||||||
LOG_INFO("GNSS Factory Reset via PCAS10,3");
|
LOG_INFO("GNSS Factory Reset via PCAS10,3");
|
||||||
@ -1526,23 +1502,12 @@ bool GPS::lookForLocation()
|
|||||||
|
|
||||||
#ifndef TINYGPS_OPTION_NO_CUSTOM_FIELDS
|
#ifndef TINYGPS_OPTION_NO_CUSTOM_FIELDS
|
||||||
fixType = atoi(gsafixtype.value()); // will set to zero if no data
|
fixType = atoi(gsafixtype.value()); // will set to zero if no data
|
||||||
// LOG_DEBUG("FIX QUAL=%d, TYPE=%d", fixQual, fixType);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// check if GPS has an acceptable lock
|
// check if GPS has an acceptable lock
|
||||||
if (!hasLock())
|
if (!hasLock())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("AGE: LOC=%d FIX=%d DATE=%d TIME=%d", reader.location.age(),
|
|
||||||
#ifndef TINYGPS_OPTION_NO_CUSTOM_FIELDS
|
|
||||||
gsafixtype.age(),
|
|
||||||
#else
|
|
||||||
0,
|
|
||||||
#endif
|
|
||||||
reader.date.age(), reader.time.age());
|
|
||||||
#endif // GPS_EXTRAVERBOSE
|
|
||||||
|
|
||||||
// Is this a new point or are we re-reading the previous one?
|
// Is this a new point or are we re-reading the previous one?
|
||||||
if (!reader.location.isUpdated() && !reader.altitude.isUpdated())
|
if (!reader.location.isUpdated() && !reader.altitude.isUpdated())
|
||||||
return false;
|
return false;
|
||||||
@ -1564,15 +1529,9 @@ bool GPS::lookForLocation()
|
|||||||
|
|
||||||
// Bail out EARLY to avoid overwriting previous good data (like #857)
|
// Bail out EARLY to avoid overwriting previous good data (like #857)
|
||||||
if (toDegInt(loc.lat) > 900000000) {
|
if (toDegInt(loc.lat) > 900000000) {
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("Bail out EARLY on LAT %i", toDegInt(loc.lat));
|
|
||||||
#endif
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (toDegInt(loc.lng) > 1800000000) {
|
if (toDegInt(loc.lng) > 1800000000) {
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("Bail out EARLY on LNG %i", toDegInt(loc.lng));
|
|
||||||
#endif
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1582,7 +1541,6 @@ bool GPS::lookForLocation()
|
|||||||
#ifndef TINYGPS_OPTION_NO_CUSTOM_FIELDS
|
#ifndef TINYGPS_OPTION_NO_CUSTOM_FIELDS
|
||||||
p.HDOP = reader.hdop.value();
|
p.HDOP = reader.hdop.value();
|
||||||
p.PDOP = TinyGPSPlus::parseDecimal(gsapdop.value());
|
p.PDOP = TinyGPSPlus::parseDecimal(gsapdop.value());
|
||||||
// LOG_DEBUG("PDOP=%d, HDOP=%d", p.PDOP, p.HDOP);
|
|
||||||
#else
|
#else
|
||||||
// FIXME! naive PDOP emulation (assumes VDOP==HDOP)
|
// FIXME! naive PDOP emulation (assumes VDOP==HDOP)
|
||||||
// correct formula is PDOP = SQRT(HDOP^2 + VDOP^2)
|
// correct formula is PDOP = SQRT(HDOP^2 + VDOP^2)
|
||||||
@ -1676,8 +1634,6 @@ bool GPS::whileActive()
|
|||||||
clearBuffer();
|
clearBuffer();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
// if (_serial_gps->available() > 0)
|
|
||||||
// LOG_DEBUG("GPS Bytes Waiting: %u", _serial_gps->available());
|
|
||||||
// First consume any chars that have piled up at the receiver
|
// First consume any chars that have piled up at the receiver
|
||||||
while (_serial_gps->available() > 0) {
|
while (_serial_gps->available() > 0) {
|
||||||
int c = _serial_gps->read();
|
int c = _serial_gps->read();
|
||||||
|
@ -383,9 +383,6 @@ int MeshService::onGPSChanged(const meshtastic::GPSStatus *newStatus)
|
|||||||
pos = gps->p;
|
pos = gps->p;
|
||||||
} else {
|
} else {
|
||||||
// The GPS has lost lock
|
// The GPS has lost lock
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("onGPSchanged() - lost validLocation");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
// Used fixed position if configured regardless of GPS lock
|
// Used fixed position if configured regardless of GPS lock
|
||||||
if (config.position.fixed_position) {
|
if (config.position.fixed_position) {
|
||||||
|
@ -148,7 +148,6 @@ bool PhoneAPI::handleToRadio(const uint8_t *buf, size_t bufLength)
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// Ignore nop messages
|
// Ignore nop messages
|
||||||
// LOG_DEBUG("Error: unexpected ToRadio variant");
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -179,7 +178,6 @@ bool PhoneAPI::handleToRadio(const uint8_t *buf, size_t bufLength)
|
|||||||
size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
||||||
{
|
{
|
||||||
if (!available()) {
|
if (!available()) {
|
||||||
// LOG_DEBUG("getFromRadio=not available");
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// In case we send a FromRadio packet
|
// In case we send a FromRadio packet
|
||||||
@ -188,11 +186,11 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
// Advance states as needed
|
// Advance states as needed
|
||||||
switch (state) {
|
switch (state) {
|
||||||
case STATE_SEND_NOTHING:
|
case STATE_SEND_NOTHING:
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_NOTHING");
|
LOG_DEBUG("getFromRadio=STATE_SEND_NOTHING");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case STATE_SEND_MY_INFO:
|
case STATE_SEND_MY_INFO:
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_MY_INFO");
|
LOG_DEBUG("getFromRadio=STATE_SEND_MY_INFO");
|
||||||
// If the user has specified they don't want our node to share its location, make sure to tell the phone
|
// If the user has specified they don't want our node to share its location, make sure to tell the phone
|
||||||
// app not to send locations on our behalf.
|
// app not to send locations on our behalf.
|
||||||
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_my_info_tag;
|
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_my_info_tag;
|
||||||
@ -204,7 +202,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case STATE_SEND_OWN_NODEINFO: {
|
case STATE_SEND_OWN_NODEINFO: {
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_OWN_NODEINFO");
|
LOG_INFO("Sending My NodeInfo");
|
||||||
auto us = nodeDB->readNextMeshNode(readIndex);
|
auto us = nodeDB->readNextMeshNode(readIndex);
|
||||||
if (us) {
|
if (us) {
|
||||||
nodeInfoForPhone = TypeConversions::ConvertToNodeInfo(us);
|
nodeInfoForPhone = TypeConversions::ConvertToNodeInfo(us);
|
||||||
@ -220,14 +218,14 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case STATE_SEND_METADATA:
|
case STATE_SEND_METADATA:
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_METADATA");
|
LOG_DEBUG("Sending Metadata");
|
||||||
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_metadata_tag;
|
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_metadata_tag;
|
||||||
fromRadioScratch.metadata = getDeviceMetadata();
|
fromRadioScratch.metadata = getDeviceMetadata();
|
||||||
state = STATE_SEND_CHANNELS;
|
state = STATE_SEND_CHANNELS;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case STATE_SEND_CHANNELS:
|
case STATE_SEND_CHANNELS:
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_CHANNELS");
|
LOG_INFO("Sending Channels");
|
||||||
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_channel_tag;
|
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_channel_tag;
|
||||||
fromRadioScratch.channel = channels.getByIndex(config_state);
|
fromRadioScratch.channel = channels.getByIndex(config_state);
|
||||||
config_state++;
|
config_state++;
|
||||||
@ -239,7 +237,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case STATE_SEND_CONFIG:
|
case STATE_SEND_CONFIG:
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_CONFIG");
|
LOG_INFO("Sending Radio config");
|
||||||
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_config_tag;
|
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_config_tag;
|
||||||
switch (config_state) {
|
switch (config_state) {
|
||||||
case meshtastic_Config_device_tag:
|
case meshtastic_Config_device_tag:
|
||||||
@ -294,7 +292,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case STATE_SEND_MODULECONFIG:
|
case STATE_SEND_MODULECONFIG:
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_MODULECONFIG");
|
LOG_INFO("Sending Module Config");
|
||||||
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_moduleConfig_tag;
|
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_moduleConfig_tag;
|
||||||
switch (config_state) {
|
switch (config_state) {
|
||||||
case meshtastic_ModuleConfig_mqtt_tag:
|
case meshtastic_ModuleConfig_mqtt_tag:
|
||||||
@ -363,7 +361,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case STATE_SEND_OTHER_NODEINFOS: {
|
case STATE_SEND_OTHER_NODEINFOS: {
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_OTHER_NODEINFOS");
|
LOG_INFO("Sending known nodes");
|
||||||
if (nodeInfoForPhone.num != 0) {
|
if (nodeInfoForPhone.num != 0) {
|
||||||
LOG_INFO("nodeinfo: num=0x%x, lastseen=%u, id=%s, name=%s", nodeInfoForPhone.num, nodeInfoForPhone.last_heard,
|
LOG_INFO("nodeinfo: num=0x%x, lastseen=%u, id=%s, name=%s", nodeInfoForPhone.num, nodeInfoForPhone.last_heard,
|
||||||
nodeInfoForPhone.user.id, nodeInfoForPhone.user.long_name);
|
nodeInfoForPhone.user.id, nodeInfoForPhone.user.long_name);
|
||||||
@ -372,7 +370,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
// Stay in current state until done sending nodeinfos
|
// Stay in current state until done sending nodeinfos
|
||||||
nodeInfoForPhone.num = 0; // We just consumed a nodeinfo, will need a new one next time
|
nodeInfoForPhone.num = 0; // We just consumed a nodeinfo, will need a new one next time
|
||||||
} else {
|
} else {
|
||||||
LOG_INFO("Done sending nodeinfos");
|
LOG_INFO("Done sending nodeinfo");
|
||||||
state = STATE_SEND_FILEMANIFEST;
|
state = STATE_SEND_FILEMANIFEST;
|
||||||
// Go ahead and send that ID right now
|
// Go ahead and send that ID right now
|
||||||
return getFromRadio(buf);
|
return getFromRadio(buf);
|
||||||
@ -381,7 +379,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case STATE_SEND_FILEMANIFEST: {
|
case STATE_SEND_FILEMANIFEST: {
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_FILEMANIFEST");
|
LOG_DEBUG("getFromRadio=STATE_SEND_FILEMANIFEST");
|
||||||
// last element
|
// last element
|
||||||
if (config_state == filesManifest.size()) { // also handles an empty filesManifest
|
if (config_state == filesManifest.size()) { // also handles an empty filesManifest
|
||||||
config_state = 0;
|
config_state = 0;
|
||||||
@ -404,7 +402,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
case STATE_SEND_PACKETS:
|
case STATE_SEND_PACKETS:
|
||||||
pauseBluetoothLogging = false;
|
pauseBluetoothLogging = false;
|
||||||
// Do we have a message from the mesh or packet from the local device?
|
// Do we have a message from the mesh or packet from the local device?
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_PACKETS");
|
LOG_DEBUG("getFromRadio=STATE_SEND_PACKETS");
|
||||||
if (queueStatusPacketForPhone) {
|
if (queueStatusPacketForPhone) {
|
||||||
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_queueStatus_tag;
|
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_queueStatus_tag;
|
||||||
fromRadioScratch.queueStatus = *queueStatusPacketForPhone;
|
fromRadioScratch.queueStatus = *queueStatusPacketForPhone;
|
||||||
@ -442,7 +440,6 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
|
|
||||||
// VERY IMPORTANT to not print debug messages while writing to fromRadioScratch - because we use that same buffer
|
// VERY IMPORTANT to not print debug messages while writing to fromRadioScratch - because we use that same buffer
|
||||||
// for logging (when we are encapsulating with protobufs)
|
// for logging (when we are encapsulating with protobufs)
|
||||||
// LOG_DEBUG("encoding toPhone packet to phone variant=%d, %d bytes", fromRadioScratch.which_payload_variant, numbytes);
|
|
||||||
return numbytes;
|
return numbytes;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -452,7 +449,7 @@ size_t PhoneAPI::getFromRadio(uint8_t *buf)
|
|||||||
|
|
||||||
void PhoneAPI::sendConfigComplete()
|
void PhoneAPI::sendConfigComplete()
|
||||||
{
|
{
|
||||||
LOG_INFO("getFromRadio=STATE_SEND_COMPLETE_ID");
|
LOG_INFO("Config Send Complete.");
|
||||||
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_config_complete_id_tag;
|
fromRadioScratch.which_payload_variant = meshtastic_FromRadio_config_complete_id_tag;
|
||||||
fromRadioScratch.config_complete_id = config_nonce;
|
fromRadioScratch.config_complete_id = config_nonce;
|
||||||
config_nonce = 0;
|
config_nonce = 0;
|
||||||
@ -552,7 +549,6 @@ bool PhoneAPI::available()
|
|||||||
if (!packetForPhone)
|
if (!packetForPhone)
|
||||||
packetForPhone = service->getForPhone();
|
packetForPhone = service->getForPhone();
|
||||||
hasPacket = !!packetForPhone;
|
hasPacket = !!packetForPhone;
|
||||||
// LOG_DEBUG("available hasPacket=%d", hasPacket);
|
|
||||||
return hasPacket;
|
return hasPacket;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
@ -171,7 +171,7 @@ ErrorCode RadioLibInterface::send(meshtastic_MeshPacket *p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
LOG_WARN("send - lora tx disabled because RegionCode_Unset");
|
LOG_WARN("send - lora tx disabled: Region is not set");
|
||||||
packetPool.release(p);
|
packetPool.release(p);
|
||||||
return ERRNO_DISABLED;
|
return ERRNO_DISABLED;
|
||||||
}
|
}
|
||||||
@ -200,7 +200,6 @@ ErrorCode RadioLibInterface::send(meshtastic_MeshPacket *p)
|
|||||||
|
|
||||||
// set (random) transmit delay to let others reconfigure their radio,
|
// set (random) transmit delay to let others reconfigure their radio,
|
||||||
// to avoid collisions and implement timing-based flooding
|
// to avoid collisions and implement timing-based flooding
|
||||||
// LOG_DEBUG("Set random delay before transmitting.");
|
|
||||||
setTransmitDelay();
|
setTransmitDelay();
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
@ -255,27 +254,22 @@ void RadioLibInterface::onNotify(uint32_t notification)
|
|||||||
case ISR_TX:
|
case ISR_TX:
|
||||||
handleTransmitInterrupt();
|
handleTransmitInterrupt();
|
||||||
startReceive();
|
startReceive();
|
||||||
// LOG_DEBUG("tx complete - starting timer");
|
|
||||||
startTransmitTimer();
|
startTransmitTimer();
|
||||||
break;
|
break;
|
||||||
case ISR_RX:
|
case ISR_RX:
|
||||||
handleReceiveInterrupt();
|
handleReceiveInterrupt();
|
||||||
startReceive();
|
startReceive();
|
||||||
// LOG_DEBUG("rx complete - starting timer");
|
|
||||||
startTransmitTimer();
|
startTransmitTimer();
|
||||||
break;
|
break;
|
||||||
case TRANSMIT_DELAY_COMPLETED:
|
case TRANSMIT_DELAY_COMPLETED:
|
||||||
// LOG_DEBUG("delay done");
|
|
||||||
|
|
||||||
// If we are not currently in receive mode, then restart the random delay (this can happen if the main thread
|
// If we are not currently in receive mode, then restart the random delay (this can happen if the main thread
|
||||||
// has placed the unit into standby) FIXME, how will this work if the chipset is in sleep mode?
|
// has placed the unit into standby) FIXME, how will this work if the chipset is in sleep mode?
|
||||||
if (!txQueue.empty()) {
|
if (!txQueue.empty()) {
|
||||||
if (!canSendImmediately()) {
|
if (!canSendImmediately()) {
|
||||||
// LOG_DEBUG("Currently Rx/Tx-ing: set random delay");
|
|
||||||
setTransmitDelay(); // currently Rx/Tx-ing: reset random delay
|
setTransmitDelay(); // currently Rx/Tx-ing: reset random delay
|
||||||
} else {
|
} else {
|
||||||
if (isChannelActive()) { // check if there is currently a LoRa packet on the channel
|
if (isChannelActive()) { // check if there is currently a LoRa packet on the channel
|
||||||
// LOG_DEBUG("Channel is active, try receiving first.");
|
|
||||||
startReceive(); // try receiving this packet, afterwards we'll be trying to transmit again
|
startReceive(); // try receiving this packet, afterwards we'll be trying to transmit again
|
||||||
setTransmitDelay();
|
setTransmitDelay();
|
||||||
} else {
|
} else {
|
||||||
@ -293,7 +287,6 @@ void RadioLibInterface::onNotify(uint32_t notification)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// LOG_DEBUG("done with txqueue");
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -326,7 +319,6 @@ void RadioLibInterface::startTransmitTimer(bool withDelay)
|
|||||||
// If we have work to do and the timer wasn't already scheduled, schedule it now
|
// If we have work to do and the timer wasn't already scheduled, schedule it now
|
||||||
if (!txQueue.empty()) {
|
if (!txQueue.empty()) {
|
||||||
uint32_t delay = !withDelay ? 1 : getTxDelayMsec();
|
uint32_t delay = !withDelay ? 1 : getTxDelayMsec();
|
||||||
// LOG_DEBUG("xmit timer %d", delay);
|
|
||||||
notifyLater(delay, TRANSMIT_DELAY_COMPLETED, false); // This will implicitly enable
|
notifyLater(delay, TRANSMIT_DELAY_COMPLETED, false); // This will implicitly enable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -336,14 +328,12 @@ void RadioLibInterface::startTransmitTimerSNR(float snr)
|
|||||||
// If we have work to do and the timer wasn't already scheduled, schedule it now
|
// If we have work to do and the timer wasn't already scheduled, schedule it now
|
||||||
if (!txQueue.empty()) {
|
if (!txQueue.empty()) {
|
||||||
uint32_t delay = getTxDelayMsecWeighted(snr);
|
uint32_t delay = getTxDelayMsecWeighted(snr);
|
||||||
// LOG_DEBUG("xmit timer %d", delay);
|
|
||||||
notifyLater(delay, TRANSMIT_DELAY_COMPLETED, false); // This will implicitly enable
|
notifyLater(delay, TRANSMIT_DELAY_COMPLETED, false); // This will implicitly enable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void RadioLibInterface::handleTransmitInterrupt()
|
void RadioLibInterface::handleTransmitInterrupt()
|
||||||
{
|
{
|
||||||
// LOG_DEBUG("handling lora TX interrupt");
|
|
||||||
// This can be null if we forced the device to enter standby mode. In that case
|
// This can be null if we forced the device to enter standby mode. In that case
|
||||||
// ignore the transmit interrupt
|
// ignore the transmit interrupt
|
||||||
if (sendingPacket)
|
if (sendingPacket)
|
||||||
@ -366,7 +356,6 @@ void RadioLibInterface::completeSending()
|
|||||||
|
|
||||||
// We are done sending that packet, release it
|
// We are done sending that packet, release it
|
||||||
packetPool.release(p);
|
packetPool.release(p);
|
||||||
// LOG_DEBUG("Done with send");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -390,7 +379,7 @@ void RadioLibInterface::handleReceiveInterrupt()
|
|||||||
|
|
||||||
#ifndef DISABLE_WELCOME_UNSET
|
#ifndef DISABLE_WELCOME_UNSET
|
||||||
if (config.lora.region == meshtastic_Config_LoRaConfig_RegionCode_UNSET) {
|
if (config.lora.region == meshtastic_Config_LoRaConfig_RegionCode_UNSET) {
|
||||||
LOG_WARN("recv - lora rx disabled because RegionCode_Unset");
|
LOG_WARN("lora rx disabled: Region is not set");
|
||||||
airTime->logAirtime(RX_ALL_LOG, xmitMsec);
|
airTime->logAirtime(RX_ALL_LOG, xmitMsec);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -449,23 +449,6 @@ struct SmartPosition PositionModule::getDistanceTraveledSinceLastSend(meshtastic
|
|||||||
float distanceTraveledSinceLastSend = GeoCoord::latLongToMeter(
|
float distanceTraveledSinceLastSend = GeoCoord::latLongToMeter(
|
||||||
lastGpsLatitude * 1e-7, lastGpsLongitude * 1e-7, currentPosition.latitude_i * 1e-7, currentPosition.longitude_i * 1e-7);
|
lastGpsLatitude * 1e-7, lastGpsLongitude * 1e-7, currentPosition.latitude_i * 1e-7, currentPosition.longitude_i * 1e-7);
|
||||||
|
|
||||||
#ifdef GPS_EXTRAVERBOSE
|
|
||||||
LOG_DEBUG("--------LAST POSITION------------------------------------");
|
|
||||||
LOG_DEBUG("lastGpsLatitude=%i, lastGpsLatitude=%i", lastGpsLatitude, lastGpsLongitude);
|
|
||||||
|
|
||||||
LOG_DEBUG("--------CURRENT POSITION---------------------------------");
|
|
||||||
LOG_DEBUG("currentPosition.latitude_i=%i, currentPosition.longitude_i=%i", lastGpsLatitude, lastGpsLongitude);
|
|
||||||
|
|
||||||
LOG_DEBUG("--------SMART POSITION-----------------------------------");
|
|
||||||
LOG_DEBUG("hasTraveledOverThreshold=%i, distanceTraveled=%f, distanceThreshold=%f",
|
|
||||||
abs(distanceTraveledSinceLastSend) >= distanceTravelThreshold, abs(distanceTraveledSinceLastSend),
|
|
||||||
distanceTravelThreshold);
|
|
||||||
|
|
||||||
if (abs(distanceTraveledSinceLastSend) >= distanceTravelThreshold) {
|
|
||||||
LOG_DEBUG("SMART SEEEEEEEEENDING");
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return SmartPosition{.distanceTraveled = abs(distanceTraveledSinceLastSend),
|
return SmartPosition{.distanceTraveled = abs(distanceTraveledSinceLastSend),
|
||||||
.distanceThreshold = distanceTravelThreshold,
|
.distanceThreshold = distanceTravelThreshold,
|
||||||
.hasTraveledOverThreshold = abs(distanceTraveledSinceLastSend) >= distanceTravelThreshold};
|
.hasTraveledOverThreshold = abs(distanceTraveledSinceLastSend) >= distanceTravelThreshold};
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
|
|
||||||
// Debugging
|
// Debugging
|
||||||
// #define GPS_DEBUG
|
// #define GPS_DEBUG
|
||||||
// #define GPS_EXTRAVERBOSE
|
|
||||||
|
|
||||||
// Lora
|
// Lora
|
||||||
#define USE_LLCC68 // Original Chatter2 with LLCC68 module
|
#define USE_LLCC68 // Original Chatter2 with LLCC68 module
|
||||||
|
Loading…
Reference in New Issue
Block a user