mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-14 09:02:14 +00:00
give more margin for heltec no battery voltage
This commit is contained in:
parent
80e4bc6289
commit
7475e3c105
@ -4,17 +4,18 @@ You probably don't care about this section - skip to the next one.
|
|||||||
|
|
||||||
## before next release
|
## before next release
|
||||||
|
|
||||||
|
* fix python tool problem
|
||||||
|
* fix ttgo eink screen
|
||||||
|
* make native sim not touch hardware
|
||||||
|
* reenable sim in CI builds
|
||||||
|
* figure our wss for mqtt.meshtastic - use cloudflare? 2052 ws, 2053 crypt
|
||||||
|
* release android APK - fix recent 1.2.28 crash report
|
||||||
* turn on setTx(timeout) and state = setDioIrqParams(SX126X_IRQ_TX_DONE | SX126X_IRQ_TIMEOUT, SX126X_IRQ_TX_DONE | SX126X_IRQ_TIMEOUT); in sx1262 code
|
* turn on setTx(timeout) and state = setDioIrqParams(SX126X_IRQ_TX_DONE | SX126X_IRQ_TIMEOUT, SX126X_IRQ_TX_DONE | SX126X_IRQ_TIMEOUT); in sx1262 code
|
||||||
* pine64 lora module
|
* pine64 lora module
|
||||||
* nrf52 USB is unreliable while sleeping?
|
|
||||||
* @havealoha fixedposition not working
|
* @havealoha fixedposition not working
|
||||||
* merge https://meshtastic.discourse.group/t/spanish-translation-update/2986/5
|
|
||||||
* @luxonn reports that after a while the android app stops showing new messages
|
* @luxonn reports that after a while the android app stops showing new messages
|
||||||
* nrf52 shows as "sleeping" in android app? (but led is blinking)
|
|
||||||
* ask for vercel access
|
* ask for vercel access
|
||||||
* fix heltec battery scaling
|
* finish plan for riot.im
|
||||||
* check android 1.2.20 usage, possibly release to general
|
|
||||||
* release android APK
|
|
||||||
|
|
||||||
* add rak4600 support (with rf95 radio and limited ram)
|
* add rak4600 support (with rf95 radio and limited ram)
|
||||||
|
|
||||||
|
@ -129,7 +129,9 @@ class AnalogBatteryLevel : public HasBatteryLevel
|
|||||||
private:
|
private:
|
||||||
/// If we see a battery voltage higher than physics allows - assume charger is pumping
|
/// If we see a battery voltage higher than physics allows - assume charger is pumping
|
||||||
/// in power
|
/// in power
|
||||||
const float fullVolt = 4200, emptyVolt = 3270, chargingVolt = 4210, noBatVolt = 2100;
|
|
||||||
|
/// For heltecs with no battery connected, the measured voltage is 2204, so raising to 2230 from 2100
|
||||||
|
const float fullVolt = 4200, emptyVolt = 3270, chargingVolt = 4210, noBatVolt = 2230;
|
||||||
float last_read_value = 0.0;
|
float last_read_value = 0.0;
|
||||||
uint32_t last_read_time_ms = 0;
|
uint32_t last_read_time_ms = 0;
|
||||||
} analogLevel;
|
} analogLevel;
|
||||||
|
Loading…
Reference in New Issue
Block a user