stw24/Core/Inc/params.h

36 lines
588 B
C
Raw Normal View History

#ifndef INC_PARAMS_H
#define INC_PARAMS_H
#ifdef __cplusplus
extern "C" {
#endif
2023-04-04 22:05:50 +02:00
#include <stddef.h>
#include <stdint.h>
2023-04-04 22:05:50 +02:00
#include "util.h"
CountedEnum(ParamType, size_t, PF_BBAL, PF_TC1, PF_TC2, PF_TORQUEMAP, PF_TEST1,
PF_TEST2, PF_TEST3, PF_TEST4);
typedef struct {
float bbal;
unsigned tc1;
unsigned tc2;
unsigned torque_map;
unsigned test[4];
} Params;
extern Params params;
2023-04-04 22:05:50 +02:00
void params_init();
void params_inc(ParamType param);
void params_dec(ParamType param);
void params_broadcast(ParamType param);
#ifdef __cplusplus
}
#endif
#endif // INC_PARAMS_H