1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

printf naming cleanup

This commit is contained in:
Dominic Clifton 2015-01-31 22:29:17 +01:00
parent 2a37e26715
commit a9b2c39872
2 changed files with 4 additions and 4 deletions

View file

@ -185,7 +185,7 @@ static void _putc(void *p, char c)
serialWrite(printfSerialPort, c);
}
void initPrintfSupport(void)
void printfSupportInit(void)
{
init_printf(NULL, _putc);
}
@ -201,7 +201,7 @@ int fputc(int c, FILE *f)
return c;
}
void initPrintfSupport(serialPort_t *serialPort)
void printfSupportInit(void)
{
// Nothing to do
}

View file

@ -91,7 +91,7 @@ serialPort_t *loopbackPort;
failsafe_t *failsafe;
void initPrintfSupport(void);
void printfSupportInit(void);
void timerInit(void);
void telemetryInit(void);
void serialInit(serialConfig_t *initialSerialConfig);
@ -125,7 +125,7 @@ void init(void)
drv_pwm_config_t pwm_params;
bool sensorsOK = false;
initPrintfSupport();
printfSupportInit();
initEEPROM();