10 lines
187 B
C
10 lines
187 B
C
#ifndef SLAVE_INPUTS_H
|
|
#define SLAVE_INPUTS_H
|
|
|
|
void SlaveInputs_Init(void);
|
|
void SlaveInputs_Process(void);
|
|
int SlaveInputs_HasChanges(void);
|
|
void SlaveInputs_ClearChanges(void);
|
|
|
|
#endif
|