|
@ -38,13 +38,13 @@ |
|
|
#ifdef __cplusplus |
|
|
#ifdef __cplusplus |
|
|
extern "C" { |
|
|
extern "C" { |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
void u8g_SetPinOutput(uint8_t internal_pin_number) { SET_DIR_OUTPUT(internal_pin_number); } |
|
|
void u8g_SetPinOutput(uint8_t internal_pin_number) { SET_DIR_OUTPUT(internal_pin_number); } |
|
|
void u8g_SetPinInput(uint8_t internal_pin_number) { SET_DIR_INPUT(internal_pin_number); } |
|
|
void u8g_SetPinInput(uint8_t internal_pin_number) { SET_DIR_INPUT(internal_pin_number); } |
|
|
void u8g_SetPinLevel(uint8_t pin, uint8_t pin_status) { WRITE_PIN(pin, pin_status); } |
|
|
void u8g_SetPinLevel(uint8_t pin, uint8_t pin_status) { WRITE_PIN(pin, pin_status); } |
|
|
uint8_t u8g_GetPinLevel(uint8_t pin) { return READ_PIN(pin); } |
|
|
uint8_t u8g_GetPinLevel(uint8_t pin) { return READ_PIN(pin); } |
|
|
void usleep(uint64_t microsec){ |
|
|
void usleep(uint64_t microsec) { assert(false); /* why we here? */ } |
|
|
assert(false); // why we here?
|
|
|
|
|
|
} |
|
|
|
|
|
#ifdef __cplusplus |
|
|
#ifdef __cplusplus |
|
|
} |
|
|
} |
|
|
#endif |
|
|
#endif |
|
|