You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
308 B
9 lines
308 B
#pragma once
|
|
|
|
void Port_Init(void);
|
|
void Port_Cyclic(void);
|
|
bool Port_Read(const uint8_t _channel);
|
|
void Port_Write(const uint8_t _channel, const bool _newState, const bool _initGpio);
|
|
void Port_Write(const uint8_t _channel, const bool _newState);
|
|
bool Port_Detect_Mode_HP(bool _state);
|
|
void Port_Exit(void);
|