You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
680 B
39 lines
680 B
//
|
|
// Example of using UART with stream
|
|
//
|
|
|
|
#include <avr/io.h>
|
|
#include <util/delay.h>
|
|
#include <avr/pgmspace.h>
|
|
#include <avr/interrupt.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "lib/uart.h"
|
|
#include "lib/stream.h"
|
|
|
|
void main()
|
|
{
|
|
// Enable UART with baud rate 9600
|
|
uart_init(9600);
|
|
|
|
// Functions from `stream.h` will work with any stream
|
|
// "uart" is a pointer to the UART stream
|
|
|
|
put_str(uart, "UART is 1337");
|
|
put_nl(uart);
|
|
put_str_P(uart, PSTR("String from program memory!!!"));
|
|
put_nl(uart);
|
|
|
|
put_u16f(uart, 31416, 4);
|
|
|
|
put_i32(uart, 123456789L);
|
|
|
|
put_nl(uart);
|
|
|
|
put_x16(uart, 0xAC01);
|
|
put_nl(uart);
|
|
put_x64(uart, 0xABAD1DEADEADBEEF);
|
|
|
|
while(1);
|
|
}
|
|
|