[solved] why nonstop process paused - no continuous output
Posted: Thu Nov 17, 2016 11:39 pm
simple code:
This simple example stands for several std outputs
paused several tacts -
Output on Youtube
does here work a 'hidden' fill in sendbuffer ?
can we change to "each char" to get continuous output`?
thanks for watching and tips
best wishes
rudi
btw:
nonstop continuous printf output example ESP31 ADC
This simple example stands for several std outputs
Code: Select all
void app_main() {
uint32_t counts = 0;
nvs_flash_init();
/// system_init();
while (-1) {
printf("Counter: %10d\r", counts);
counts++;
}
}
Output on Youtube
does here work a 'hidden' fill in sendbuffer ?
can we change to "each char" to get continuous output`?
thanks for watching and tips
best wishes
rudi
btw:
nonstop continuous printf output example ESP31 ADC