|
|
|
@ -1,5 +1,6 @@
@@ -1,5 +1,6 @@
|
|
|
|
|
/*
|
|
|
|
|
APM_FastSerial.cpp - Fast Serial Output for Ardupilot Mega Hardware (Atmega1280) |
|
|
|
|
APM_FastSerial.cpp - Fast Serial Output for Ardupilot Mega Hardware (atmega1280) |
|
|
|
|
It´s also compatible with standard Arduino boards (atmega 168 and 328) |
|
|
|
|
Interrupt driven Serial output with intermediate buffer |
|
|
|
|
Code Jose Julio and Jordi Muñoz. DIYDrones.com |
|
|
|
|
|
|
|
|
@ -10,8 +11,8 @@
@@ -10,8 +11,8 @@
|
|
|
|
|
|
|
|
|
|
This library works as a complement of the standard Arduino Serial |
|
|
|
|
library. So user must initialize Standard Serial Arduino library first. |
|
|
|
|
This library works in Serial port 0 and Serial port3 (telemetry port) |
|
|
|
|
Methods: (the same as standard arduino library) |
|
|
|
|
This library works in Serial port 0 and Serial port3(telemetry port)[APM] |
|
|
|
|
Methods: (the same as standard arduino library, inherits from Print) |
|
|
|
|
write() for bytes or array of bytes (binary output) |
|
|
|
|
print() for chars, strings, numbers and floats |
|
|
|
|
println() |
|
|
|
@ -26,7 +27,6 @@ extern "C" {
@@ -26,7 +27,6 @@ extern "C" {
|
|
|
|
|
#include <avr/io.h> |
|
|
|
|
#include "WConstants.h" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#define TX_BUFFER_SIZE 80 // Serial output buffer size
|
|
|
|
|
|
|
|
|
|
// Serial0 buffer
|
|
|
|
@ -34,12 +34,14 @@ uint8_t tx_buffer0[TX_BUFFER_SIZE];
@@ -34,12 +34,14 @@ uint8_t tx_buffer0[TX_BUFFER_SIZE];
|
|
|
|
|
volatile int tx_buffer0_head=0; |
|
|
|
|
volatile int tx_buffer0_tail=0; |
|
|
|
|
|
|
|
|
|
#if defined(__AVR_ATmega1280__) |
|
|
|
|
// Serial3 buffer
|
|
|
|
|
uint8_t tx_buffer3[TX_BUFFER_SIZE]; |
|
|
|
|
volatile int tx_buffer3_head=0; |
|
|
|
|
volatile int tx_buffer3_tail=0; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(__AVR_ATmega1280__) // For atmega1280 we use Serial port 0 and 3
|
|
|
|
|
// Serial0 interrupt
|
|
|
|
|
ISR(SIG_USART0_DATA) |
|
|
|
|
{ |
|
|
|
@ -67,6 +69,22 @@ ISR(SIG_USART3_DATA)
@@ -67,6 +69,22 @@ ISR(SIG_USART3_DATA)
|
|
|
|
|
UDR3 = data; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
#else |
|
|
|
|
|
|
|
|
|
// Serial interrupt
|
|
|
|
|
ISR(USART_UDRE_vect) |
|
|
|
|
{ |
|
|
|
|
uint8_t data; |
|
|
|
|
|
|
|
|
|
if (tx_buffer0_tail == tx_buffer0_head) |
|
|
|
|
UCSR0B &= ~(_BV(UDRIE0)); // Disable interrupt
|
|
|
|
|
else { |
|
|
|
|
data = tx_buffer0[tx_buffer0_tail]; |
|
|
|
|
tx_buffer0_tail = (tx_buffer0_tail + 1) % TX_BUFFER_SIZE;
|
|
|
|
|
UDR0 = data; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
// Constructors ////////////////////////////////////////////////////////////////
|
|
|
|
|
APM_FastSerial_Class::APM_FastSerial_Class(uint8_t SerialPort) |
|
|
|
@ -98,6 +116,7 @@ void APM_FastSerial_Class::write(uint8_t b)
@@ -98,6 +116,7 @@ void APM_FastSerial_Class::write(uint8_t b)
|
|
|
|
|
if (Enable_tx_int) |
|
|
|
|
UCSR0B |= _BV(UDRIE0); // Enable Serial TX interrupt
|
|
|
|
|
} |
|
|
|
|
#if defined(__AVR_ATmega1280__) |
|
|
|
|
else // Serial Port 3
|
|
|
|
|
{ |
|
|
|
|
// if buffer was empty then we enable Serial TX interrupt
|
|
|
|
@ -114,180 +133,18 @@ void APM_FastSerial_Class::write(uint8_t b)
@@ -114,180 +133,18 @@ void APM_FastSerial_Class::write(uint8_t b)
|
|
|
|
|
if (Enable_tx_int) |
|
|
|
|
UCSR3B |= _BV(UDRIE3); // Enable Serial TX interrupt
|
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Send a buffer of bytes (this is util for binary protocols)
|
|
|
|
|
void APM_FastSerial_Class::write(const uint8_t *buffer, int size) |
|
|
|
|
{ |
|
|
|
|
while (size--) |
|
|
|
|
while (size--) |
|
|
|
|
write(*buffer++); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(uint8_t b) |
|
|
|
|
{ |
|
|
|
|
write(b); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(const char *s) |
|
|
|
|
{ |
|
|
|
|
while (*s) |
|
|
|
|
print(*s++); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(char c) |
|
|
|
|
{ |
|
|
|
|
write((uint8_t) c); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(int n) |
|
|
|
|
{ |
|
|
|
|
print((long) n); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(unsigned int n) |
|
|
|
|
{ |
|
|
|
|
print((unsigned long) n); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(long n) |
|
|
|
|
{ |
|
|
|
|
if (n < 0) { |
|
|
|
|
print('-'); |
|
|
|
|
n = -n; |
|
|
|
|
} |
|
|
|
|
printNumber(n, 10); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(unsigned long n) |
|
|
|
|
{ |
|
|
|
|
printNumber(n, 10); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::print(long n, int base) |
|
|
|
|
{ |
|
|
|
|
if (base == 0) |
|
|
|
|
print((char) n); |
|
|
|
|
else if (base == 10) |
|
|
|
|
print(n); |
|
|
|
|
else |
|
|
|
|
printNumber(n, base); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(void) |
|
|
|
|
{ |
|
|
|
|
print('\r'); |
|
|
|
|
print('\n');
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(char c) |
|
|
|
|
{ |
|
|
|
|
print(c); |
|
|
|
|
println();
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(const char c[]) |
|
|
|
|
{ |
|
|
|
|
print(c); |
|
|
|
|
println(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(uint8_t b) |
|
|
|
|
{ |
|
|
|
|
print(b); |
|
|
|
|
println(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(int n) |
|
|
|
|
{ |
|
|
|
|
print(n); |
|
|
|
|
println(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(long n) |
|
|
|
|
{ |
|
|
|
|
print(n); |
|
|
|
|
println();
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(unsigned long n) |
|
|
|
|
{ |
|
|
|
|
print(n); |
|
|
|
|
println();
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(long n, int base) |
|
|
|
|
{ |
|
|
|
|
print(n, base); |
|
|
|
|
println(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// To print floats
|
|
|
|
|
void APM_FastSerial_Class::print(double n, int digits) |
|
|
|
|
{ |
|
|
|
|
printFloat(n, digits); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::println(double n, int digits) |
|
|
|
|
{ |
|
|
|
|
print(n, digits); |
|
|
|
|
println(); |
|
|
|
|
} |
|
|
|
|
// Private Methods /////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::printNumber(unsigned long n, uint8_t base) |
|
|
|
|
{ |
|
|
|
|
unsigned char buf[8 * sizeof(long)]; // Assumes 8-bit chars.
|
|
|
|
|
unsigned long i = 0; |
|
|
|
|
|
|
|
|
|
if (n == 0) { |
|
|
|
|
print('0'); |
|
|
|
|
return; |
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (n > 0) { |
|
|
|
|
buf[i++] = n % base; |
|
|
|
|
n /= base; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (; i > 0; i--) |
|
|
|
|
print((char) (buf[i - 1] < 10 ? '0' + buf[i - 1] : 'A' + buf[i - 1] - 10)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void APM_FastSerial_Class::printFloat(double number, uint8_t digits)
|
|
|
|
|
{
|
|
|
|
|
// Handle negative numbers
|
|
|
|
|
if (number < 0.0) |
|
|
|
|
{ |
|
|
|
|
print('-'); |
|
|
|
|
number = -number; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Round correctly so that print(1.999, 2) prints as "2.00"
|
|
|
|
|
double rounding = 0.5; |
|
|
|
|
for (uint8_t i=0; i<digits; ++i) |
|
|
|
|
rounding /= 10.0; |
|
|
|
|
|
|
|
|
|
number += rounding; |
|
|
|
|
|
|
|
|
|
// Extract the integer part of the number and print it
|
|
|
|
|
unsigned long int_part = (unsigned long)number; |
|
|
|
|
double remainder = number - (double)int_part; |
|
|
|
|
print(int_part); |
|
|
|
|
|
|
|
|
|
// Print the decimal point, but only if there are digits beyond
|
|
|
|
|
if (digits > 0) |
|
|
|
|
print(".");
|
|
|
|
|
|
|
|
|
|
// Extract digits from the remainder one at a time
|
|
|
|
|
while (digits-- > 0) |
|
|
|
|
{ |
|
|
|
|
remainder *= 10.0; |
|
|
|
|
int toPrint = int(remainder); |
|
|
|
|
print(toPrint); |
|
|
|
|
remainder -= toPrint;
|
|
|
|
|
}
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// We create this two instances
|
|
|
|
|
APM_FastSerial_Class APM_FastSerial(0); // For Serial port 0
|
|
|
|
|
APM_FastSerial_Class APM_FastSerial3(3); // For Serial port 3
|
|
|
|
|
APM_FastSerial_Class APM_FastSerial(0); // For Serial port 0
|
|
|
|
|
#if defined(__AVR_ATmega1280__) |
|
|
|
|
APM_FastSerial_Class APM_FastSerial3(3); // For Serial port 3 (only Atmega1280)
|
|
|
|
|
#endif |