|
@@ -1,5 +1,5 @@
|
|
|
|
|
|
- HarwareSerial.cpp - Hardware serial library for Wiring
|
|
|
+ HardwareSerial.cpp - Hardware serial library for Wiring
|
|
|
Copyright (c) 2006 Nicholas Zambetti. All right reserved.
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
@@ -17,51 +17,202 @@
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
Modified 23 November 2006 by David A. Mellis
|
|
|
- Modified 29 January 2009, Marius Kintel for Sanguino - http:
|
|
|
*/
|
|
|
|
|
|
-#include "WProgram.h"
|
|
|
-
|
|
|
+#include <stdio.h>
|
|
|
+#include <string.h>
|
|
|
+#include <inttypes.h>
|
|
|
#include "wiring.h"
|
|
|
+#include "wiring_private.h"
|
|
|
+
|
|
|
#include "HardwareSerial.h"
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+#define RX_BUFFER_SIZE 128
|
|
|
+
|
|
|
+struct ring_buffer {
|
|
|
+ unsigned char buffer[RX_BUFFER_SIZE];
|
|
|
+ int head;
|
|
|
+ int tail;
|
|
|
+};
|
|
|
+
|
|
|
+ring_buffer rx_buffer = { { 0 }, 0, 0 };
|
|
|
+
|
|
|
+
|
|
|
+#if defined(__AVR_ATmega1280__)
|
|
|
+ring_buffer rx_buffer1 = { { 0 }, 0, 0 };
|
|
|
+ring_buffer rx_buffer2 = { { 0 }, 0, 0 };
|
|
|
+ring_buffer rx_buffer3 = { { 0 }, 0, 0 };
|
|
|
+#endif
|
|
|
+
|
|
|
+#if defined(__AVR_ATmega644P__)
|
|
|
+ring_buffer rx_buffer1 = { { 0 }, 0, 0 };
|
|
|
+#endif
|
|
|
+
|
|
|
+inline void store_char(unsigned char c, ring_buffer *rx_buffer)
|
|
|
+{
|
|
|
+ int i = (rx_buffer->head + 1) % RX_BUFFER_SIZE;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if (i != rx_buffer->tail) {
|
|
|
+ rx_buffer->buffer[rx_buffer->head] = c;
|
|
|
+ rx_buffer->head = i;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#if defined(__AVR_ATmega644P__)
|
|
|
+
|
|
|
+
|
|
|
+SIGNAL(SIG_USART0_RECV)
|
|
|
+{
|
|
|
+ unsigned char c = UDR0;
|
|
|
+ store_char(c, &rx_buffer);
|
|
|
+}
|
|
|
+
|
|
|
+SIGNAL(SIG_USART1_RECV)
|
|
|
+{
|
|
|
+ unsigned char c = UDR1;
|
|
|
+ store_char(c, &rx_buffer1);
|
|
|
+}
|
|
|
+
|
|
|
+#else
|
|
|
+
|
|
|
+#if defined(__AVR_ATmega8__)
|
|
|
+SIGNAL(SIG_UART_RECV)
|
|
|
+#else
|
|
|
+SIGNAL(USART_RX_vect)
|
|
|
+#endif
|
|
|
+{
|
|
|
+#if defined(__AVR_ATmega8__)
|
|
|
+ unsigned char c = UDR;
|
|
|
+#else
|
|
|
+ unsigned char c = UDR0;
|
|
|
+#endif
|
|
|
+ store_char(c, &rx_buffer);
|
|
|
+}
|
|
|
+
|
|
|
+#endif
|
|
|
+
|
|
|
|
|
|
|
|
|
-HardwareSerial::HardwareSerial(uint8_t uart)
|
|
|
- :_uart(uart)
|
|
|
+HardwareSerial::HardwareSerial(ring_buffer *rx_buffer,
|
|
|
+ volatile uint8_t *ubrrh, volatile uint8_t *ubrrl,
|
|
|
+ volatile uint8_t *ucsra, volatile uint8_t *ucsrb,
|
|
|
+ volatile uint8_t *udr,
|
|
|
+ uint8_t rxen, uint8_t txen, uint8_t rxcie, uint8_t udre, uint8_t u2x)
|
|
|
{
|
|
|
+ _rx_buffer = rx_buffer;
|
|
|
+ _ubrrh = ubrrh;
|
|
|
+ _ubrrl = ubrrl;
|
|
|
+ _ucsra = ucsra;
|
|
|
+ _ucsrb = ucsrb;
|
|
|
+ _udr = udr;
|
|
|
+ _rxen = rxen;
|
|
|
+ _txen = txen;
|
|
|
+ _rxcie = rxcie;
|
|
|
+ _udre = udre;
|
|
|
+ _u2x = u2x;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
-void HardwareSerial::begin(long speed)
|
|
|
+void HardwareSerial::begin(long baud)
|
|
|
{
|
|
|
- beginSerial(_uart, speed);
|
|
|
+ uint16_t baud_setting;
|
|
|
+ bool use_u2x;
|
|
|
+
|
|
|
+
|
|
|
+ if (baud > F_CPU / 16) {
|
|
|
+ use_u2x = true;
|
|
|
+ } else {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ uint8_t nonu2x_baud_error = abs((int)(255-((F_CPU/(16*(((F_CPU/8/baud-1)/2)+1))*255)/baud)));
|
|
|
+ uint8_t u2x_baud_error = abs((int)(255-((F_CPU/(8*(((F_CPU/4/baud-1)/2)+1))*255)/baud)));
|
|
|
+
|
|
|
+
|
|
|
+ use_u2x = (nonu2x_baud_error > u2x_baud_error);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (use_u2x) {
|
|
|
+ *_ucsra = 1 << _u2x;
|
|
|
+ baud_setting = (F_CPU / 4 / baud - 1) / 2;
|
|
|
+ } else {
|
|
|
+ *_ucsra = 0;
|
|
|
+ baud_setting = (F_CPU / 8 / baud - 1) / 2;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ *_ubrrh = baud_setting >> 8;
|
|
|
+ *_ubrrl = baud_setting;
|
|
|
+
|
|
|
+ sbi(*_ucsrb, _rxen);
|
|
|
+ sbi(*_ucsrb, _txen);
|
|
|
+ sbi(*_ucsrb, _rxcie);
|
|
|
+}
|
|
|
+
|
|
|
+void HardwareSerial::end()
|
|
|
+{
|
|
|
+ cbi(*_ucsrb, _rxen);
|
|
|
+ cbi(*_ucsrb, _txen);
|
|
|
+ cbi(*_ucsrb, _rxcie);
|
|
|
}
|
|
|
|
|
|
uint8_t HardwareSerial::available(void)
|
|
|
{
|
|
|
- return serialAvailable(_uart);
|
|
|
+ return (RX_BUFFER_SIZE + _rx_buffer->head - _rx_buffer->tail) % RX_BUFFER_SIZE;
|
|
|
}
|
|
|
|
|
|
int HardwareSerial::read(void)
|
|
|
{
|
|
|
- return serialRead(_uart);
|
|
|
+
|
|
|
+ if (_rx_buffer->head == _rx_buffer->tail) {
|
|
|
+ return -1;
|
|
|
+ } else {
|
|
|
+ unsigned char c = _rx_buffer->buffer[_rx_buffer->tail];
|
|
|
+ _rx_buffer->tail = (_rx_buffer->tail + 1) % RX_BUFFER_SIZE;
|
|
|
+ return c;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void HardwareSerial::flush()
|
|
|
{
|
|
|
- serialFlush(_uart);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ _rx_buffer->head = _rx_buffer->tail;
|
|
|
}
|
|
|
|
|
|
-void HardwareSerial::write(uint8_t b) {
|
|
|
- serialWrite(_uart, b);
|
|
|
+void HardwareSerial::write(uint8_t c)
|
|
|
+{
|
|
|
+ while (!((*_ucsra) & (1 << _udre)))
|
|
|
+ ;
|
|
|
+
|
|
|
+ *_udr = c;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
-HardwareSerial Serial = HardwareSerial(0);
|
|
|
+#if defined(__AVR_ATmega8__)
|
|
|
+HardwareSerial Serial(&rx_buffer, &UBRRH, &UBRRL, &UCSRA, &UCSRB, &UDR, RXEN, TXEN, RXCIE, UDRE, U2X);
|
|
|
+#else
|
|
|
+HardwareSerial Serial(&rx_buffer, &UBRR0H, &UBRR0L, &UCSR0A, &UCSR0B, &UDR0, RXEN0, TXEN0, RXCIE0, UDRE0, U2X0);
|
|
|
+#endif
|
|
|
|
|
|
#if defined(__AVR_ATmega644P__)
|
|
|
-HardwareSerial Serial1 = HardwareSerial(1);
|
|
|
+HardwareSerial Serial1(&rx_buffer1, &UBRR1H, &UBRR1L, &UCSR1A, &UCSR1B, &UDR1, RXEN1, TXEN1, RXCIE1, UDRE1, U2X1);
|
|
|
#endif
|