Update function variable name in main function

This commit is contained in:
Sanyog Nevase Nevase 2024-11-30 03:39:32 +05:30
parent 9af5bc8463
commit ae0ab563d3
1 changed files with 2 additions and 2 deletions

4
main.c
View File

@ -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);
}
}
}