@@ -45,7 +45,10 @@ void main(void)
/* Infinite loop */
while (1) {
- Delay(200);
+ Delay(100);
+ if (BufferIndex >= ADC_SMPLS) {
+ BufferIndex = 0;
+ }
showV();
showC();
}