Fix compilation error against libboost 1.67

This commit is contained in:
Clément BRUGUERA
2019-08-12 14:55:31 +00:00
committed by Alexander Chemeris
parent 9797c410e3
commit 9f0bf718e2

View File

@@ -118,7 +118,7 @@ double lms6002d_dev::txrx_pll_tune(uint8_t reg, double ref_clock, double out_fre
for (int i = 0; i < 64; i++) { for (int i = 0; i < 64; i++) {
// Update VCOCAP // Update VCOCAP
lms_write_bits(reg + 0x9, 0x3f, i); lms_write_bits(reg + 0x9, 0x3f, i);
usleep(50); usleep(long(50));
int comp = read_reg(reg + 0x0a); int comp = read_reg(reg + 0x0a);
switch (comp >> 6) { switch (comp >> 6) {
@@ -360,7 +360,7 @@ int lms6002d_dev::general_dc_calibration_loop(uint8_t dc_addr, uint8_t calibrati
if (verbosity > 1) printf("cnt=%d\n", try_cnt_limit); if (verbosity > 1) printf("cnt=%d\n", try_cnt_limit);
// Wait for 6.4(1.6) us // Wait for 6.4(1.6) us
usleep(6.4); usleep(long(6.4));
// Read DC_CLBR_DONE // Read DC_CLBR_DONE
reg_val = read_reg(calibration_reg_base+0x01); reg_val = read_reg(calibration_reg_base+0x01);