sysprog-basic/print/main.c

35 lines
624 B
C
Raw Normal View History

2023-12-09 11:27:55 +01:00
#define F_CPU 16000000UL
#define __AVR_ATmega328P__
#include <avr/interrupt.h>
#include <avr/io.h>
#include <util/delay.h>
#include "../include/uart.h"
#define BAUD 9600
#define MYUBRR F_CPU/16/BAUD-1
int main (void)
{
uart_init();
sei();
2023-12-09 12:00:23 +01:00
char buf[10];
int sensor;
2023-12-09 11:27:55 +01:00
while (1)
{
2023-12-09 12:00:23 +01:00
// lets say we read some value from a sensor
sensor = 65;
// we want to print this, so we store the ascii repr in our buffer
2023-12-09 12:06:16 +01:00
uart_printi("sensor status: ", sensor);
2023-12-09 11:50:23 +01:00
_delay_ms(1000);
2023-12-09 11:27:55 +01:00
}
}
ISR (USART_RX_vect) {
// echo the message
char c = UDR0;
uart_printc(c);
}