diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-04-17 22:28:04 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-04-17 22:28:04 +0200 |
commit | 3d3cb50885c6176b228ab76062fdb2eda0bd9cc6 (patch) | |
tree | f62a60e6303a1f411e9f85ae949e25d50f2822e7 /host | |
parent | 097ea58a684b09d929d4b5cea13dff3e81143d1c (diff) | |
download | uhd-3d3cb50885c6176b228ab76062fdb2eda0bd9cc6.tar.gz uhd-3d3cb50885c6176b228ab76062fdb2eda0bd9cc6.tar.bz2 uhd-3d3cb50885c6176b228ab76062fdb2eda0bd9cc6.zip |
Change GPSDO UART speed back to 115200
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index 55748129d..aeef4025b 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -278,7 +278,7 @@ b200_impl::b200_impl(const device_addr_t &device_addr) // Create the GPSDO control //////////////////////////////////////////////////////////////////// _async_task_data->gpsdo_uart = b200_uart::make(_ctrl_transport, B200_TX_GPS_UART_SID); - _async_task_data->gpsdo_uart->set_baud_divider(B200_BUS_CLOCK_RATE/9600); + _async_task_data->gpsdo_uart->set_baud_divider(B200_BUS_CLOCK_RATE/115200); _async_task_data->gpsdo_uart->write_uart("\n"); //cause the baud and response to be setup boost::this_thread::sleep(boost::posix_time::seconds(1)); //allow for a little propagation |