Tool/software:
Dear,
I need to wait until my voltage supply is above e.g. 3V before I release uC initialiation routines.
How to implement a 'wait for BORx level'?
"
uint32_t k;
int main(void)
{
// Wait until BOR level is reached
// Code to be elablorated!
for (uint32_t i = 0; i < 16000; i++) k = i + 1; //20ms waiting
SYSCFG_DL_init();
"