Merge pull request #40467 from amecava:master
PiperOrigin-RevId: 317940427 Change-Id: If3e84eb5d8ad5d048b6a143b9929a7f360a28e95
This commit is contained in:
commit
41d9feb10d
@ -22,6 +22,10 @@ limitations under the License.
|
||||
|
||||
extern UART_HandleTypeDef DEBUG_UART_HANDLE;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
int __io_putchar(int ch) {
|
||||
HAL_UART_Transmit(&DEBUG_UART_HANDLE, (uint8_t *)&ch, 1, HAL_MAX_DELAY);
|
||||
@ -36,4 +40,8 @@ int fputc(int ch, FILE *f) {
|
||||
}
|
||||
#endif /* __GNUC__ */
|
||||
|
||||
extern "C" void DebugLog(const char *s) { fprintf(stderr, "%s", s); }
|
||||
void DebugLog(const char *s) { fprintf(stderr, "%s", s); }
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user