Add endurance power limit

This commit is contained in:
2023-08-01 19:43:09 +02:00
parent 2b54a8ffe8
commit 1eefffcbd6
3 changed files with 15 additions and 2 deletions

View File

@ -11,7 +11,7 @@ extern "C" {
#include "util.h"
CountedEnum(ParamType, size_t, PF_BBAL, PF_SLIPREF, PF_MUMAX, PF_ASRP, PF_ASRON,
PF_ASRI);
PF_ASRI, PF_PLIM);
typedef struct {
float bbal;
@ -20,6 +20,7 @@ typedef struct {
unsigned asrp;
unsigned asri;
unsigned asron;
unsigned plim;
} Params;
extern Params params;