1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

alarms: lower heap warning and critical thresholds for CC

Free heap on CC is currently 160 bytes so the current thresholds
were causing a continual alarm condition, thus preventing arming.
This commit is contained in:
Stacey Sheldon 2011-06-20 22:31:05 -04:00
parent 9e632b532e
commit 80709f356f

View File

@ -85,8 +85,8 @@
#define AUXUART_BAUDRATE 19200
/* Alarm Thresholds */
#define HEAP_LIMIT_WARNING 220
#define HEAP_LIMIT_CRITICAL 150
#define HEAP_LIMIT_WARNING 156
#define HEAP_LIMIT_CRITICAL 130
#define CPULOAD_LIMIT_WARNING 80
#define CPULOAD_LIMIT_CRITICAL 95