Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BufferedSerial by
Diff: BufferedSerial.cpp
- Revision:
- 4:2ba4d2e1f05d
- Parent:
- 3:6b76fcf27545
- Child:
- 6:8287e83943f0
--- a/BufferedSerial.cpp Wed Jun 12 20:40:15 2013 +0000
+++ b/BufferedSerial.cpp Mon Dec 30 18:16:39 2013 +0000
@@ -3,7 +3,7 @@
* @brief Software Buffer - Extends mbed Serial functionallity adding irq driven TX and RX
* @author sam grove
* @version 1.0
- * @see
+ * @see
*
* Copyright (c) 2013
*
@@ -21,15 +21,13 @@
*/
#include "BufferedSerial.h"
-#include "LogUtil.h"
#include <stdarg.h>
BufferedSerial::BufferedSerial(PinName tx, PinName rx, const char* name)
: Serial(tx, rx, name)
{
Serial::attach(this, &BufferedSerial::rxIrq, Serial::RxIrq);
- Serial::attach(this, &BufferedSerial::txIrq, Serial::TxIrq);
-
+
return;
}
@@ -37,7 +35,7 @@
{
Serial::attach(NULL, Serial::RxIrq);
Serial::attach(NULL, Serial::TxIrq);
-
+
return;
}
@@ -60,21 +58,20 @@
{
_txbuf = (char)c;
BufferedSerial::prime();
-
+
return c;
}
int BufferedSerial::puts(const char *s)
{
const char* ptr = s;
-
- while(*(ptr) != 0)
- {
+
+ while(*(ptr) != 0) {
_txbuf = *(ptr++);
}
_txbuf = '\n'; // done per puts definition
BufferedSerial::prime();
-
+
return (ptr - s) + 1;
}
@@ -82,18 +79,17 @@
{
char buf[256] = {0};
int r = 0;
-
+
va_list arg;
va_start(arg, format);
r = vsprintf(buf, format, arg);
// this may not hit the heap but should alert the user anyways
- if(r > sizeof(buf))
- {
- ERROR("Buffer Overflow on the Stack Occured!\n");
+ if(r > sizeof(buf)) {
+ error("%s %d buffer overwrite!\n", __FILE__, __LINE__);
}
+ va_end(arg);
r = BufferedSerial::write(buf, r);
- va_end(arg);
-
+
return r;
}
@@ -101,49 +97,51 @@
{
const char* ptr = (const char*)s;
const char* end = ptr + length;
-
- while (ptr != end)
- {
+
+ while (ptr != end) {
_txbuf = *(ptr++);
}
BufferedSerial::prime();
-
- return ptr - (const char*)s;
+
+ return ptr - (const char*)s;
}
void BufferedSerial::rxIrq(void)
{
// read from the peripheral and make sure something is available
- if(serial_readable(&_serial))
- {
+ if(serial_readable(&_serial)) {
_rxbuf = serial_getc(&_serial); // if so load them into a buffer
}
-
+
return;
}
void BufferedSerial::txIrq(void)
{
// see if there is room in the hardware fifo and if something is in the software fifo
- while(serial_writable(&_serial) && _txbuf.available())
- {
- serial_putc(&_serial, (int)_txbuf.get());
+ while(serial_writable(&_serial)) {
+ if(_txbuf.available()) {
+ serial_putc(&_serial, (int)_txbuf.get());
+ } else {
+ // disable the TX interrupt when there is nothing left to send
+ Serial::attach(NULL, Serial::TxIrq);
+ break;
+ }
}
-
+
return;
}
void BufferedSerial::prime(void)
{
// if already busy then the irq will pick this up
- if(serial_writable(&_serial))
- {
- Serial::attach(NULL, Serial::TxIrq); // make sure not to cause contention in the irq
+ if(serial_writable(&_serial)) {
+ Serial::attach(NULL, Serial::TxIrq); // make sure not to cause contention in the irq
BufferedSerial::txIrq(); // only write to hardware in one place
Serial::attach(this, &BufferedSerial::txIrq, Serial::TxIrq);
}
-
+
return;
}
