Fix conflicting types for 'tfp_printf' (#8269)
* Refactor to use mpaland/printf * trim firmware size * remove keymap changes * run clang format * Fixup after rebase * fix up git-submodule command for printf
This commit is contained in:
@ -796,9 +796,8 @@ int8_t sendchar(uint8_t c) {
|
||||
}
|
||||
#endif /* CONSOLE_ENABLE */
|
||||
|
||||
void sendchar_pf(void *p, char c) {
|
||||
(void)p;
|
||||
sendchar((uint8_t)c);
|
||||
void _putchar(char character) {
|
||||
sendchar(character);
|
||||
}
|
||||
|
||||
#ifdef RAW_ENABLE
|
||||
|
Reference in New Issue
Block a user