Solution for Bluetooth SIG hands-on training course
Dependencies: BLE_API mbed-dev-bin nRF51822-bluetooth-mdw
Fork of microbit-dal-bluetooth-mdw_starter by
Revision 4:9fbeeb89de59, committed 2016-04-07
- Comitter:
- LancasterUniversity
- Date:
- Thu Apr 07 11:59:17 2016 +0100
- Parent:
- 3:d86a4ddc1867
- Child:
- 5:f0f1cecd65d8
- Commit message:
- Synchronized with git rev 63a8ae81
Author: James Devine
microbit-dal: Fixed multiline note which had artefacts in microbit-docs.
Changed in this revision
inc/drivers/MicroBitI2C.h | Show annotated file Show diff for this revision Revisions of this file |
source/drivers/MicroBitI2C.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/inc/drivers/MicroBitI2C.h Thu Apr 07 11:59:16 2016 +0100 +++ b/inc/drivers/MicroBitI2C.h Thu Apr 07 11:59:17 2016 +0100 @@ -64,11 +64,11 @@ * * @note This class presents a wrapped mbed call to capture failed I2C operations caused by a known silicon bug in the nrf51822. * Attempts to automatically reset and restart the I2C hardware if this case is detected. - * + * \par * For reference see PAN56 in: - * + * \par * https://www.nordicsemi.com/eng/nordic/Products/nRF51822/PAN-nRF51822/24634 - * + * \par * v2.0 through to v2.4 */ MicroBitI2C(PinName sda, PinName scl); @@ -104,4 +104,4 @@ int write(int address, const char *data, int length, bool repeated = false); }; -#endif +#endif \ No newline at end of file
--- a/source/drivers/MicroBitI2C.cpp Thu Apr 07 11:59:16 2016 +0100 +++ b/source/drivers/MicroBitI2C.cpp Thu Apr 07 11:59:17 2016 +0100 @@ -44,11 +44,11 @@ * * @note This class presents a wrapped mbed call to capture failed I2C operations caused by a known silicon bug in the nrf51822. * Attempts to automatically reset and restart the I2C hardware if this case is detected. - * + * \par * For reference see PAN56 in: - * + * \par * https://www.nordicsemi.com/eng/nordic/Products/nRF51822/PAN-nRF51822/24634 - * + * \par * v2.0 through to v2.4 */ MicroBitI2C::MicroBitI2C(PinName sda, PinName scl) : I2C(sda,scl) @@ -131,4 +131,4 @@ retries = 0; return MICROBIT_OK; -} +} \ No newline at end of file