Revert "Fix conflicting types for 'tfp_printf' (#8269)"
This reverts commit e17b55e33a
.
This commit is contained in:
@ -796,7 +796,10 @@ int8_t sendchar(uint8_t c) {
|
||||
}
|
||||
#endif /* CONSOLE_ENABLE */
|
||||
|
||||
void _putchar(char character) { sendchar(character); }
|
||||
void sendchar_pf(void *p, char c) {
|
||||
(void)p;
|
||||
sendchar((uint8_t)c);
|
||||
}
|
||||
|
||||
#ifdef RAW_ENABLE
|
||||
void raw_hid_send(uint8_t *data, uint8_t length) {
|
||||
|
Reference in New Issue
Block a user