12345678910111213141516171819202122232425 |
- #ifndef __FACTORS_H
- #define __FACTORS_H
- #include "io.h"
- #include <stdbool.h>
- typedef struct
- {
- float factor_k[AI_COMMON_NUMBER];
- float factor_b[AI_COMMON_NUMBER];
-
- } factors_t;
- //
- bool factors_load(factors_t *factros);
- //
- void factors_sector_clear(void);
- #endif // __FACTORS_H
|