#ifndef DIO_2019_02_08_H_ #define DIO_2019_02_08_H_ #include #if defined(__cplusplus) extern "C" { #endif typedef void Dio_ConfigType; typedef uint32 Dio_ChannelType; typedef uint8 Dio_LevelType; void Dio_Init (const Dio_ConfigType* ConfigPtr); void Dio_WriteChannel(Dio_ChannelType ChannelId, Dio_LevelType Level); Dio_LevelType Dio_ReadChannel (Dio_ChannelType ChannelId); #if defined(__cplusplus) } #endif #endif // DIO_2019_02_08_H_