You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current battery voltage sampling gets triggered on every radio transmission, which is unnecessarily often.
A logic to update the voltage only once per minute, with interval configurable in application_mode_default.h should be added.
Related to #86
/** @brief Resample battery voltage at this interval */
#ifndef APP_BATTERY_SAMPLE_MS
# define APP_BATTERY__SAMPLEL_MS (60U*1000U)
#endif
The text was updated successfully, but these errors were encountered:
Current battery voltage sampling gets triggered on every radio transmission, which is unnecessarily often.
A logic to update the voltage only once per minute, with interval configurable in
application_mode_default.h
should be added.Related to #86
The text was updated successfully, but these errors were encountered: