-
Notifications
You must be signed in to change notification settings - Fork 0
/
usart.h
54 lines (48 loc) · 1.76 KB
/
usart.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
*
* Copyright (C) 2013 Bas Brugman
* http://www.visionnaire.nl
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef _USART_H_INCLUDED
#define _USART_H_INCLUDED
#include <stdint.h>
#include <stdio.h>
#include <avr/io.h>
#include <avr/pgmspace.h>
#define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
#define USART_BAUDRATE 19200 // slow, but we don't care, we want a low % of transfer errors
#define RX_BUFFER_SIZE 256 // receive buffer
#define TX_BUFFER_SIZE 256 // transmit buffer
// ring buffer declaration:
// the RX buffer fills from the outside world, putting new "heads" in and shrinks by getting the "tails" in the program,
// a full RX buffer discards new data
// the TX buffer puts new "heads" in and transmits the "tail",
// a full TX buffer waits for a space
static volatile uint8_t tx_buffer[TX_BUFFER_SIZE];
static volatile uint8_t tx_buffer_head;
static volatile uint8_t tx_buffer_tail;
static volatile uint8_t rx_buffer[RX_BUFFER_SIZE];
static volatile uint8_t rx_buffer_head;
static volatile uint8_t rx_buffer_tail;
// proto's
void uart_init(void);
void uart_put(uint8_t c);
void uart_put_str(const char *str);
void uart_put_str_P(const char *str);
void uart_put_int(const uint16_t dec);
uint8_t uart_get(void);
uint8_t uart_available(void);
#endif