Beispiel #1
0
void udb_serial_set_rate(long rate)
{
	U2BRG = UDB_BAUD(rate) ;
	return ;
}
Beispiel #2
0
boolean udb_serial_check_rate(long rate)
{
	return ( U2BRG == UDB_BAUD(rate) ) ;
}
Beispiel #3
0
void udb_gps_set_rate(int32_t rate)
{
#if (CONSOLE_UART != 1)
	U1BRG = UDB_BAUD(rate);
#endif
}
Beispiel #4
0
boolean udb_gps_check_rate(int32_t rate)
{
	return (U1BRG == UDB_BAUD(rate));
}
Beispiel #5
0
boolean udb_serial_check_rate(int32_t rate)
{
	return (U2BRG == UDB_BAUD(rate));
}
Beispiel #6
0
void udb_serial_set_rate(int32_t rate)
{
	U2BRG = UDB_BAUD(rate);
}
Beispiel #7
0
boolean udb_gps_check_rate(long rate)
{
	return ( U1BRG == UDB_BAUD(rate) ) ;
}
Beispiel #8
0
// int only good up to 32767
void udb_gps_set_rate(long rate)
{
	U1BRG = UDB_BAUD(rate) ;
	return ;
}
void udb_gps_set_rate(int32_t rate)
{
	U1BRG = UDB_BAUD(rate);
}