Ejemplo n.º 1
0
void bt_unknown_parser()
{
	while (!bt_uart.isRxBufferEmpty())
	{
		uint8_t c = bt_uart.Read();
		DEBUG(">> %02X %c ??\n", c, c);
	}
}
Ejemplo n.º 2
0
void gps_step()
{
	while (!gps_uart.isRxBufferEmpty())
		gps_parse(&gps_uart);
}