🎨 misc. cleanup
This commit is contained in:
parent
e667d4e6e4
commit
a81fd009f0
|
@ -38,13 +38,13 @@
|
|||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
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_SetPinLevel(uint8_t pin, uint8_t pin_status) { WRITE_PIN(pin, pin_status); }
|
||||
uint8_t u8g_GetPinLevel(uint8_t pin) { return READ_PIN(pin); }
|
||||
void usleep(uint64_t microsec){
|
||||
assert(false); // why we here?
|
||||
}
|
||||
void usleep(uint64_t microsec) { assert(false); /* why we here? */ }
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -237,7 +237,6 @@ void report_current_position_projected() {
|
|||
}
|
||||
|
||||
#if ENABLED(AUTO_REPORT_POSITION)
|
||||
//struct PositionReport { void report() { report_current_position_projected(); } };
|
||||
AutoReporter<PositionReport> position_auto_reporter;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue