Update function variable name in main function
This commit is contained in:
parent
9af5bc8463
commit
ae0ab563d3
4
main.c
4
main.c
|
@ -139,7 +139,7 @@ void nmea_sentence_process(const char *nmea_sentence)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void UART1_Handler(void)
|
||||
{
|
||||
|
@ -168,7 +168,7 @@ int main(void)
|
|||
if (nmea_ready)
|
||||
{
|
||||
nmea_ready = false;
|
||||
process_nmea_sentence((const char *)nmea_sentence);
|
||||
nmea_sentence_process((const char *)nmea_sentence);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue