Files
checker_slave/source/elec_det/elec_det.h

43 lines
563 B
C
Raw Normal View History

#ifndef elec_det_h__
#define elec_det_h__
#include "stdint.h"
2023-10-07 18:15:52 +08:00
#include "bytearray.h"
2023-10-07 18:15:52 +08:00
int elec_init(void);
int elec_scheme_init(void);
uint8_t elec_local_addr(void);
void elec_led1_power(int power);
void elec_led2_power(int power);
array_def *elec_bootinfo(void);
2023-10-07 18:15:52 +08:00
array_def *elec_check_result(void);
2023-10-07 18:15:52 +08:00
array_def *elec_write_hardversion(int version);
2023-10-07 18:15:52 +08:00
array_def *elec_write_resistor_cbv(int cbv);
array_def *elec_write_fat_buff(array_def *d);
2023-10-07 18:15:52 +08:00
array_def *elec_check_resistor(void);
2023-10-07 18:15:52 +08:00
array_def *elec_check_with_scheme(array_def *uid_psw);
#endif