我后来发现,问题实际上是因为我没有声明commsController为volatile。我将在下面为面临类似问题的任何人发布完整的工作代码:
#define F_CPU 8000000UL
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/delay.h>
class CommsController {
public:
volatile uint8_t data;
volatile bool bjsonComplete;
CommsController(uint8_t ubrr) {
UCSR0B |= (1<<RXEN0)|(1<<RXCIE0); // Enable Rx and Rx Complete Interrupt.
UBRR0H = (ubrr>>8);
UBRR0L = ubrr;
// Select 8-bit data frame, single stop bit and no parity using UCSR0C (Default values are what we want).
this->bjsonComplete = false;
this->data = 0;
}
void transmit(unsigned char data) volatile {
UCSR0B &= ~(1<<RXCIE0); // disable Rx interrupt.
/* Wait for empty transmit buffer */
while (!( UCSR0A & (1<<UDRE0)));
/* Put data into buffer, sends the data */
UDR0 = data;
while (!(UCSR0A & (1<<TXC0))); // Wait for empty transmit buffer.
UCSR0B |= (1<<RXCIE0); // Re-enable Rx interrupt.
}
};
volatile CommsController c(51);
ISR(USART0_RX_vect) {
c.data = UDR0;
}
/* Replace with your library code */
int main(void)
{
cli();
sei();
DDRB |= (1<<PORTB1);
PORTB &= ~(1<<PORTB1);
while(1) {
if(c.data == 'd') {
c.transmit('f');
c.data = 0;
}
}
return 0;
}