diff options
author | Mark Meserve <mark.meserve@ni.com> | 2017-09-05 15:02:43 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:04:01 -0800 |
commit | 860a87adc51f17b08fa8b9805d580144ef264f2a (patch) | |
tree | 037b492683134770e5a9de915f6025c4696068b4 /mpm/lib | |
parent | 3b716315fea52a1c1866c60c5d101e3bfe163560 (diff) | |
download | uhd-860a87adc51f17b08fa8b9805d580144ef264f2a.tar.gz uhd-860a87adc51f17b08fa8b9805d580144ef264f2a.tar.bz2 uhd-860a87adc51f17b08fa8b9805d580144ef264f2a.zip |
mg: make timeout values uint32_t
Diffstat (limited to 'mpm/lib')
-rw-r--r-- | mpm/lib/mykonos/ad937x_device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/lib/mykonos/ad937x_device.cpp b/mpm/lib/mykonos/ad937x_device.cpp index 7b6908d5f..bbfb67b6a 100644 --- a/mpm/lib/mykonos/ad937x_device.cpp +++ b/mpm/lib/mykonos/ad937x_device.cpp @@ -48,7 +48,7 @@ static const double TX_DEFAULT_GAIN = 0; static const uint32_t AD9371_PRODUCT_ID = 0x3; static const size_t ARM_BINARY_SIZE = 98304; -static const size_t PLL_LOCK_TIMEOUT_MS = 200; +static const uint32_t PLL_LOCK_TIMEOUT_MS = 200; static const uint32_t INIT_CAL_TIMEOUT_MS = 10000; // TODO: actually figure out what cals we want to run |