This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LAUNCHXL-CC1352R1: Clock module在MCU sleep時(Idle mode or Standby mode) 是否還會持續計數?

Part Number: LAUNCHXL-CC1352R1
Other Parts Discussed in Thread: SYSBIOS

SDK:simplelink_cc13xx_cc26xx_sdk_6_10_00_29

use the ti.sysbios.knl.Clock module to construct one-shot and periodic Clock.

1. 請問此Clock module在MCU Idle mode 或MCU Standby mode時, 是否還會持續計數?

2. 如果Clock module在MCU sleep 時不會計數,

    那當MCU wake up之後, Clock是頭開始計數, 還是從MCU sleep之前的計數值開始count?

3.  Util_startClock(&clkPeriodic);

     此Util_startClock指令執行時, Clock module會reset從頭開始計數嗎?還是會把之前殘餘的計數值加上?

     假設period 3sec, 如果在計數到1sec時, 執行 Util_startClock, 那計數值會從3sec開始算, 還是會變成1+3=4sec?

     需要先使用Util_stopClock來停止嗎? 或是用Util_restartClock呢?