mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-26 22:33:24 +00:00

remove newline from logging statements in code. The LOG_* functions will now magically add it at the end. --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
#include "PowerMon.h"
|
|
#include "NodeDB.h"
|
|
|
|
// Use the 'live' config flag to figure out if we should be showing this message
|
|
bool PowerMon::is_power_enabled(uint64_t m)
|
|
{
|
|
// FIXME: VERY STRANGE BUG: if I or in "force_enabled || " the flashed image on a rak4631 is not accepted by the bootloader as
|
|
// valid!!! Possibly a linker/gcc/bootloader bug somewhere?
|
|
return ((m & config.power.powermon_enables) ? true : false);
|
|
}
|
|
|
|
void PowerMon::setState(_meshtastic_PowerMon_State state, const char *reason)
|
|
{
|
|
#ifdef USE_POWERMON
|
|
auto oldstates = states;
|
|
states |= state;
|
|
if (oldstates != states && is_power_enabled(state)) {
|
|
emitLog(reason);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void PowerMon::clearState(_meshtastic_PowerMon_State state, const char *reason)
|
|
{
|
|
#ifdef USE_POWERMON
|
|
auto oldstates = states;
|
|
states &= ~state;
|
|
if (oldstates != states && is_power_enabled(state)) {
|
|
emitLog(reason);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void PowerMon::emitLog(const char *reason)
|
|
{
|
|
#ifdef USE_POWERMON
|
|
// The nrf52 printf doesn't understand 64 bit ints, so if we ever reach that point this function will need to change.
|
|
LOG_INFO("S:PM:0x%08lx,%s", (uint32_t)states, reason);
|
|
#endif
|
|
}
|
|
|
|
PowerMon *powerMon;
|
|
|
|
void powerMonInit()
|
|
{
|
|
powerMon = new PowerMon();
|
|
} |