Revert "Fix conflicting types for 'tfp_printf' (#8269)"

This reverts commit e17b55e33a.
This commit is contained in:
skullY
2020-05-04 09:25:44 -07:00
parent 1ff526dac0
commit 6f30b402a2
10 changed files with 357 additions and 15 deletions

View File

@ -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) {