Я хотел бы установить таймер для вызова функции 800 раз в секунду. Я использую Arduino Mega и Timer3 с прескалером 1024. Чтобы выбрать фактор прескалера, я рассмотрел следующие шаги:
- Частота процессора: 16 МГц
- Разрешение таймера: 65536 (16 бит)
- Разделить частоту процессора выбранного предделителем: 16x10 ^ 6/ 1024 = 15625
- Разделите остаток на нужную частоту 62500/800 = 19 .
- Поместите результат + 1 в регистр OCR3.
Я использовал следующую таблицу для установки регистров TCCR3B:
Ошибка
Невозможно скомпилировать код. Это ошибка, возвращаемая компилятором:
Servo \ Servo.cpp.o: в функции '__vector_32': C: \ Program Files (x86) \ Arduino \ library \ Servo / Servo.cpp: 110: множественное определение '__vector_32' AccelPart1_35.cpp.o: C: \ Программные файлы (x86) \ Arduino / AccelPart1_35.ino: 457: здесь впервые определены c: / программные файлы (x86) / arduino / hardware / tools / avr / bin /../ lib / gcc / avr / 4.3.2 /. ./../../../avr/bin/ld.exe: отключение релаксации: не будет работать с несколькими определениями
Код
volatile int cont = 0;
unsigned long aCont = 0;
void setup()
{
[...]
// initialize Timer3
cli(); // disable global interrupts
TCCR3A = 0; // set entire TCCR3A register to 0
TCCR3B = 0; // same for TCCR3B
// set compare match register to desired timer count: 800 Hz
OCR3A = 20;
// turn on CTC mode:
TCCR3B |= (1 << WGM12);
// Set CS10 and CS12 bits for 1024 prescaler:
TCCR3B |= (1 << CS30) | (1 << CS32);
// enable timer compare interrupt:
TIMSK3 |= (1 << OCIE3A);
// enable global interrupts:
sei();
}
void loop()
{
// Print every second the number of ISR invoked -> should be 100
if ( millis() % 1000 == 0)
{
Serial.println();
Serial.print(" tick: ");
Serial.println(contatore);
contatore = 0;
}
}
[...]
// This is the 457-th line
ISR(TIMER3_COMPA_vect)
{
accRoutine();
contatore++;
}
void accRoutine()
{
// reads analog values
}
Как решить конфликт с серво-библиотекой?
РЕШЕНИЕ
Конфликт решен с помощью следующего кода. Он компилируется, но счетчик, связанный с таймером 800 Гц, не увеличивает его значение.
volatile int cont = 0;
void setup()
{
Serial.begin(9600);
// Initialize Timer
cli(); // disable global interrupts
TCCR3A = 0; // set entire TCCR3A register to 0
TCCR3B = 0; // same for TCCR3B
// set compare match register to desired timer count: 800 Hz
OCR3B = 20;
// turn on CTC mode:
TCCR3B |= (1 << WGM12);
// Set CS10 and CS12 bits for 1024 prescaler:
TCCR3B |= (1 << CS30) | (1 << CS32);
// enable timer compare interrupt:
TIMSK3 |= (1 << OCIE3B);
// enable global interrupts:
sei();
Serial.println("Setup completed");
}
void loop()
{
if (millis() % 1000 == 0)
{
Serial.print(" tick: ");
Serial.println(cont);
cont = 0;
}
}
ISR(TIMER3_COMPB_vect)
{
cont++;
}
Поскольку основная проблема была решена, я создал еще один вопрос здесь , связанный с проблемой счетчиком приращения.