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:41:03 +0200 |
commit | 37187f4fa3ff0d07a5f94771c7961d9f43fd2270 (patch) | |
tree | 2363447f6ebf7160c3d0c8499184a633e3f89505 /host/lib/usrp/b200/b200_impl.cpp | |
parent | baed2bb6bff32a69e403062919471d5ac4cc9458 (diff) | |
download | uhd-37187f4fa3ff0d07a5f94771c7961d9f43fd2270.tar.gz uhd-37187f4fa3ff0d07a5f94771c7961d9f43fd2270.tar.bz2 uhd-37187f4fa3ff0d07a5f94771c7961d9f43fd2270.zip |
Change GPSDO UART speed back to 115200
Diffstat (limited to 'host/lib/usrp/b200/b200_impl.cpp')
-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 2b1c3da0c..7eaaa0087 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -323,7 +323,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 |