Newer
Older
#include "common.h"
#ifndef STATUS_H
#define STATUS_H 1
typedef struct status_struct
{
int16_t temperature_insta;
filtre2_t temperature;
filtre2_t debit5;
filtre2_t debit300;
float volume_manque;
float consigne_debit;
float consigne_adj;
float accu_integrateur;
} status_t;
extern status_t status;
void status_init();
#endif