microbit: Whitespace fixes

This commit is contained in:
Joe Finney 2016-02-01 17:54:33 +00:00
parent 420a73673d
commit 12c9ed246a
2 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ class MicroBit
// Bluetooth related member variables.
MicroBitBLEManager bleManager;
MicroBitRadio radio;
MicroBitRadio radio;
BLEDevice *ble;
/**

View File

@ -45,7 +45,7 @@ extern "C" void RADIO_IRQHandler(void)
MicroBitRadio::MicroBitRadio(uint16_t id) : datagram()
{
this->id = id;
this->status = 0;
this->status = 0;
this->group = 0;
this->queueDepth = 0;
this->rxQueue = NULL;
@ -322,7 +322,7 @@ void MicroBitRadio::idleTick()
/**
* Determines the number of packets ready to be processed.
* @return The number of packets in the receive buffer, or MICROBIT_NOT_SUPPORTED if the microbitRadio has not been enabled.
* @return The number of packets in the receive buffer.
*/
int MicroBitRadio::dataReady()
{