16 lines
321 B
C
16 lines
321 B
C
|
/*
|
|||
|
* limit_lib.h
|
|||
|
*
|
|||
|
* Created on: 15 <EFBFBD><EFBFBD><EFBFBD>. 2024 <EFBFBD>.
|
|||
|
* Author: yura
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef SRC_MAIN_LIMIT_LIB_H_
|
|||
|
#define SRC_MAIN_LIMIT_LIB_H_
|
|||
|
|
|||
|
_iq linear_decrease(float current, int alarm_level, int warnig_level);
|
|||
|
|
|||
|
_iq linear_decrease_iq(_iq current, _iq alarm_level, _iq warnig_level);
|
|||
|
|
|||
|
#endif /* SRC_MAIN_LIMIT_LIB_H_ */
|