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.
Dependencies: BLE_API mbed-dev-bin nRF51822
Fork of microbit-dal by
Diff: source/drivers/MicroBitSerial.cpp
- Revision:
- 3:d86a4ddc1867
- Parent:
- 1:8aa5cdb4ab67
- Child:
- 6:2e1c2e0d8c7a
--- a/source/drivers/MicroBitSerial.cpp Thu Apr 07 00:55:10 2016 +0000
+++ b/source/drivers/MicroBitSerial.cpp Thu Apr 07 11:59:16 2016 +0100
@@ -148,7 +148,7 @@
if(nextTail == txBuffHead)
{
MicroBitEvent(MICROBIT_ID_NOTIFY, MICROBIT_SERIAL_EVT_TX_EMPTY);
- detach(Serial::IrqType::TxIrq);
+ detach(IrqType::TxIrq);
}
//update our tail!
@@ -185,7 +185,7 @@
fiber_wake_on_event(MICROBIT_ID_NOTIFY, MICROBIT_SERIAL_EVT_TX_EMPTY);
//set the TX interrupt
- attach(this, &MicroBitSerial::dataWritten, Serial::IrqType::TxIrq);
+ attach(this, &MicroBitSerial::dataWritten, IrqType::TxIrq);
return copiedBytes;
}
@@ -231,7 +231,7 @@
if((status & MICROBIT_SERIAL_RX_BUFF_INIT))
{
//ensure that we receive no interrupts after freeing our buffer
- detach(Serial::IrqType::RxIrq);
+ detach(IrqType::RxIrq);
free(this->rxBuff);
}
@@ -245,7 +245,7 @@
//set the receive interrupt
status |= MICROBIT_SERIAL_RX_BUFF_INIT;
- attach(this, &MicroBitSerial::dataReceived, Serial::IrqType::RxIrq);
+ attach(this, &MicroBitSerial::dataReceived, IrqType::RxIrq);
return MICROBIT_OK;
}
@@ -259,7 +259,7 @@
if((status & MICROBIT_SERIAL_TX_BUFF_INIT))
{
//ensure that we receive no interrupts after freeing our buffer
- detach(Serial::IrqType::TxIrq);
+ detach(IrqType::TxIrq);
free(this->txBuff);
}
@@ -565,7 +565,7 @@
*/
ManagedString MicroBitSerial::read(int size, MicroBitSerialMode mode)
{
- uint8_t buff[size + 1] = { 0 };
+ uint8_t buff[size + 1];
int returnedSize = read((uint8_t *)buff, size, mode);
@@ -756,7 +756,7 @@
//calculate our local buffer size
int localBuffSize = (preservedTail > foundIndex) ? (rxBuffSize - preservedTail) + foundIndex : foundIndex - preservedTail;
- uint8_t localBuff[localBuffSize + 1] = { 0 };
+ uint8_t localBuff[localBuffSize + 1];
circularCopy(rxBuff, rxBuffSize, localBuff, preservedTail, foundIndex);
@@ -813,17 +813,17 @@
lockRx();
if(txBufferedSize() > 0)
- detach(Serial::IrqType::TxIrq);
+ detach(IrqType::TxIrq);
- detach(Serial::IrqType::RxIrq);
+ detach(IrqType::RxIrq);
serial_free(&_serial);
serial_init(&_serial, tx, rx);
- attach(this, &MicroBitSerial::dataReceived, Serial::IrqType::RxIrq);
+ attach(this, &MicroBitSerial::dataReceived, IrqType::RxIrq);
if(txBufferedSize() > 0)
- attach(this, &MicroBitSerial::dataWritten, Serial::IrqType::TxIrq);
+ attach(this, &MicroBitSerial::dataWritten, IrqType::TxIrq);
this->baud(this->baudrate);
@@ -1096,4 +1096,4 @@
{
//we detach by sending a bad value to attach, for some weird reason...
attach((MicroBitSerial *)NULL, &MicroBitSerial::dataReceived, interruptType);
-}
+}
\ No newline at end of file
