busy wait maximum 72 us (typically 36 us) for taking a measurement from the on-chip temperature sensor
This commit is contained in:
parent
f5a258c6a6
commit
d0a0a2a568
@ -67,7 +67,8 @@ value(int type)
|
|||||||
int32_t volatile temp;
|
int32_t volatile temp;
|
||||||
|
|
||||||
NRF_TEMP->TASKS_START = 1;
|
NRF_TEMP->TASKS_START = 1;
|
||||||
while(NRF_TEMP->EVENTS_DATARDY == 0);
|
/* nRF52832 datasheet: one temperature measurement takes typically 36 us */
|
||||||
|
RTIMER_BUSYWAIT_UNTIL(NRF_TEMP->EVENTS_DATARDY, RTIMER_SECOND * 72 / 1000000);
|
||||||
NRF_TEMP->EVENTS_DATARDY = 0;
|
NRF_TEMP->EVENTS_DATARDY = 0;
|
||||||
temp = nrf_temp_read();
|
temp = nrf_temp_read();
|
||||||
NRF_TEMP->TASKS_STOP = 1;
|
NRF_TEMP->TASKS_STOP = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user