freefly_can-rtk-gps_canbootloader: Stub out printf to remove write dependancy

This commit is contained in:
David Sidrane 2021-07-13 13:48:24 -07:00 committed by Daniel Agar
parent 518700b39b
commit 3e9c8e401e

View File

@ -187,6 +187,15 @@ void board_indicate(uiindication_t indication)
i2l[indication].hz);
}
// I2C Driver wants to use the px4 log
__EXPORT void px4_log_modulename(int level, const char *moduleName, const char *fmt, ...)
{
}
// I2C Driver wants to use printf etal (putc,wite) so cut it off here
int printf(FAR const IPTR char *fmt, ...)
{
return 0;
}