version_2.0
Dependents: cc3000_ping_demo_try_2
Fork of mbed by
Revision 51:a076018f59af, committed 2012-12-06
- Comitter:
- emilmont
- Date:
- Thu Dec 06 12:25:39 2012 +0000
- Parent:
- 50:b60934f96c0c
- Child:
- 52:09236a68d21b
- Commit message:
- Duplicate Serial enums for backward compatibility
Changed in this revision
| Serial.h | Show annotated file Show diff for this revision Revisions of this file |
--- 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);
}
}
