factors.h 301 B

12345678910111213141516171819202122232425
  1. #ifndef __FACTORS_H
  2. #define __FACTORS_H
  3. #include "io.h"
  4. #include <stdbool.h>
  5. typedef struct
  6. {
  7. float factor_k[AI_COMMON_NUMBER];
  8. float factor_b[AI_COMMON_NUMBER];
  9. } factors_t;
  10. //
  11. bool factors_load(factors_t *factros);
  12. //
  13. void factors_sector_clear(void);
  14. #endif // __FACTORS_H