샘플링 속도 및 전송 속도 등에 대해 약간 혼란스러워지기 시작했습니다.이 Arduino 코드가 있습니다.
#include <eHealth.h>
extern volatile unsigned long timer0_overflow_count;
float fanalog0;
int analog0;
unsigned long time;
byte serialByte;
void setup() {
Serial.begin(9600);
}
void loop() {
while (Serial.available()>0){
serialByte=Serial.read();
if (serialByte=='S'){
while(1){
fanalog0=eHealth.getECG();
// Use the timer0 => 1 tick every 4 us
time=(timer0_overflow_count << 8) + TCNT0;
// Microseconds conversion.
time=(time*4);
//Print in a file for simulation
//Serial.print(time);
//Serial.print(" ");
Serial.print(fanalog0,5);
Serial.print("\n");
if (Serial.available()>0){
serialByte=Serial.read();
if (serialByte=='F') break;
}
}
}
}
}
지연 인터럽트가 없기 때문에 샘플링 속도 / 주파수는 무엇입니까? Arduino ADC 속도를 기반으로합니까? 전송 속도를 높이면 샘플링 주파수 또는 직렬 포트를 통해 데이터를 전송하는 속도 만 증가합니까?