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 mbed by
Diff: Serial.h
- Revision:
- 51:a076018f59af
- Parent:
- 44:24d45a770a51
- Child:
- 54:71b101360fb9
--- a/Serial.h Fri Nov 30 12:37:42 2012 +0000 +++ b/Serial.h Thu Dec 06 12:25:39 2012 +0000 @@ -74,6 +74,19 @@ void baud(int baudrate) { serial_baud(&_serial, baudrate); } + + enum Parity { + None = 0, + Odd, + Even, + Forced1, + Forced0 + }; + + enum IrqType { + RxIrq = 0, + TxIrq + }; /** Set the transmission format used by the Serial port * @@ -81,8 +94,8 @@ * @param parity The parity used (Serial::None, Serial::Odd, Serial::Even, Serial::Forced1, Serial::Forced0; default = Serial::None) * @param stop The number of stop bits (1 or 2; default = 1) */ - void format(int bits = 8, SerialParity parity=ParityNone, int stop_bits=1) { - serial_format(&_serial, bits, parity, stop_bits); + void format(int bits = 8, Parity parity=Serial::None, int stop_bits=1) { + serial_format(&_serial, bits, (SerialParity)parity, stop_bits); } /** Determine if there is a character available to read @@ -110,12 +123,12 @@ * @param fptr A pointer to a void function, or 0 to set as none * @param type Which serial interrupt to attach the member function to (Seriall::RxIrq for receive, TxIrq for transmit buffer empty) */ - void attach(void (*fptr)(void), SerialIrq type=RxIrq) { + void attach(void (*fptr)(void), IrqType type=RxIrq) { if (fptr) { _irq[type].attach(fptr); - serial_irq_set(&_serial, type, 1); + serial_irq_set(&_serial, (SerialIrq)type, 1); } else { - serial_irq_set(&_serial, type, 0); + serial_irq_set(&_serial, (SerialIrq)type, 0); } } @@ -126,10 +139,10 @@ * @param type Which serial interrupt to attach the member function to (Seriall::RxIrq for receive, TxIrq for transmit buffer empty) */ template<typename T> - void attach(T* tptr, void (T::*mptr)(void), SerialIrq type=RxIrq) { + void attach(T* tptr, void (T::*mptr)(void), IrqType type=RxIrq) { if((mptr != NULL) && (tptr != NULL)) { _irq[type].attach(tptr, mptr); - serial_irq_set(&_serial, type, 1); + serial_irq_set(&_serial, (SerialIrq)type, 1); } }