Author: eb Date: 2008-01-03 23:58:36 -0700 (Thu, 03 Jan 2008) New Revision: 7337
Modified: usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.c usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.h Log: changed uart default speed to 115,200 Modified: usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.c =================================================================== --- usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.c 2008-01-04 06:55:23 UTC (rev 7336) +++ usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.c 2008-01-04 06:58:36 UTC (rev 7337) @@ -54,7 +54,7 @@ u->mcr = 0; hal_uart_config_t c; - c.speed = US_57600; + c.speed = US_115200; hal_uart_set_config(&c); } Modified: usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.h =================================================================== --- usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.h 2008-01-04 06:55:23 UTC (rev 7336) +++ usrp2/branches/developers/eb/u2/firmware/lib/hal_uart.h 2008-01-04 06:58:36 UTC (rev 7337) @@ -39,7 +39,7 @@ /*! * \brief Set uart parameters - * Default is 57,600 bps, 8N1. + * Default is 115,200 bps, 8N1. */ void hal_uart_set_config(const hal_uart_config_t *c); _______________________________________________ Commit-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnuradio
