aboutsummaryrefslogtreecommitdiff
path: root/protocol/serial_soft.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/serial_soft.c')
-rw-r--r--protocol/serial_soft.c114
1 files changed, 114 insertions, 0 deletions
diff --git a/protocol/serial_soft.c b/protocol/serial_soft.c
new file mode 100644
index 000000000..b7d06b644
--- /dev/null
+++ b/protocol/serial_soft.c
@@ -0,0 +1,114 @@
1/*
2Copyright 2012 Jun WAKO <wakojun@gmail.com>
3
4This software is licensed with a Modified BSD License.
5All of this is supposed to be Free Software, Open Source, DFSG-free,
6GPL-compatible, and OK to use in both free and proprietary applications.
7Additions and corrections to this file are welcome.
8
9
10Redistribution and use in source and binary forms, with or without
11modification, are permitted provided that the following conditions are met:
12
13* Redistributions of source code must retain the above copyright
14 notice, this list of conditions and the following disclaimer.
15
16* Redistributions in binary form must reproduce the above copyright
17 notice, this list of conditions and the following disclaimer in
18 the documentation and/or other materials provided with the
19 distribution.
20
21* Neither the name of the copyright holders nor the names of
22 contributors may be used to endorse or promote products derived
23 from this software without specific prior written permission.
24
25THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35POSSIBILITY OF SUCH DAMAGE.
36*/
37
38#include <stdbool.h>
39#include <avr/io.h>
40#include <avr/interrupt.h>
41#include <util/delay.h>
42#include "serial.h"
43
44/*
45 * Stupid Inefficient Busy-wait Software Serial
46 * is still useful for negative logic signal like Sun protocol not supported by hardware USART.
47 */
48
49#define WAIT_US (1000000/SERIAL_BAUD)
50
51void serial_init(void)
52{
53 SERIAL_RXD_INIT();
54}
55
56// RX ring buffer
57#define RBUF_SIZE 8
58static uint8_t rbuf[RBUF_SIZE];
59static uint8_t rbuf_head = 0;
60static uint8_t rbuf_tail = 0;
61
62uint8_t serial_recv(void)
63{
64 uint8_t data = 0;
65 if (rbuf_head == rbuf_tail) {
66 return 0;
67 }
68
69 data = rbuf[rbuf_tail];
70 rbuf_tail = (rbuf_tail + 1) % RBUF_SIZE;
71 return data;
72}
73
74//ISR(INT2_vect)
75ISR(SERIAL_RXD_VECT)
76{
77 SERIAL_RXD_INT_ENTER()
78
79 uint8_t data = 0;
80#ifdef SERIAL_BIT_ORDER_MSB
81 uint8_t pos = 0x80;
82#else
83 uint8_t pos = 0x01;
84#endif
85 // to center of start bit
86 _delay_us(WAIT_US/2);
87 do {
88 // to center of next bit
89 _delay_us(WAIT_US);
90
91 if (SERIAL_RXD_PIN&(1<<SERIAL_RXD_BIT)) {
92 data |= pos;
93 }
94#ifdef SERIAL_BIT_ORDER_MSB
95 pos >>= 1;
96#else
97 pos <<= 1;
98#endif
99 } while (pos);
100 // to center of stop bit
101 _delay_us(WAIT_US);
102
103#ifdef SERIAL_NEGATIVE_LOGIC
104 data = ~data;
105#endif
106
107 uint8_t next = (rbuf_head + 1) % RBUF_SIZE;
108 if (next != rbuf_tail) {
109 rbuf[rbuf_head] = data;
110 rbuf_head = next;
111 }
112
113 SERIAL_RXD_INT_EXIT();
114}