diff --git a/src/sm_io/chips/sm_ch_ad9510.c b/src/sm_io/chips/sm_ch_ad9510.c index 7c42c6355b3868fe154a4e62679b2a6029e9bd2f..55537155d28d51c8f7944891bcdd4489bf6c78c3 100644 --- a/src/sm_io/chips/sm_ch_ad9510.c +++ b/src/sm_io/chips/sm_ch_ad9510.c @@ -734,8 +734,9 @@ static smch_err_e _smch_ad9510_init (smch_ad9510_t *self) ASSERT_TEST(rw_err == sizeof(uint8_t), "Could not write to AD9510_REG_CFG_SERIAL", err_smpr_write, SMCH_ERR_RW_SMPR); - _smch_ad9510_reg_update (self); - /* Wait for reset to complete */ + /* According to AD9510 datasheet Rev. B, page 46, table 25, regester 0x00 (CFG_SERIAL), + * does not need to be updated by setting the "update registers" bit. We still wait our default + * ammount of time to be sure the chip is indeed reset */ SMCH_AD9510_WAIT_DFLT; /* Clear reset */ @@ -743,7 +744,10 @@ static smch_err_e _smch_ad9510_init (smch_ad9510_t *self) rw_err = _smch_ad9510_write_8 (self, AD9510_REG_CFG_SERIAL, &data); ASSERT_TEST(rw_err == sizeof(uint8_t), "Could not write to AD9510_REG_CFG_SERIAL", err_smpr_write, SMCH_ERR_RW_SMPR); - _smch_ad9510_reg_update (self); + + /* According to AD9510 datasheet Rev. B, page 46, table 25, regester 0x00 (CFG_SERIAL), + * does not need to be updated by setting the "update registers" bit. We still wait our default + * ammount of time to be sure the chip is indeed reset */ /* Wait for reset to complete */ SMCH_AD9510_WAIT_DFLT;