Generic mbed Extensions used by STM Expansion Board Firmware Packages.
Dependents: X_NUCLEO_IKS01A1 X_NUCLEO_6180XA1 1-DoorCloser 1-DoorCloser ... more
Fork of X_NUCLEO_COMMON by
Generic mbed Extensions used by STM Expansion Board Firmware Packages
DbgMCU
Helper class DbgMCU
providing a default constructor which enables debugging on STM32 MCUs while using sleep modes.
DevI2C
Helper class DevI2C
providing functions for multi-register I2C communication common for a series of I2C devices.
DevSPI
Helper class DevSPI
providing functions for SPI communication common for a series of SPI devices.
Revision 22:21096473f63e, committed 2017-08-08
- Comitter:
- johnAlexander
- Date:
- Tue Aug 08 14:37:26 2017 +0000
- Parent:
- 21:0dbcdb8dab03
- Commit message:
- Update DevI2C to allow it to continue to inherit from mbed I2C master, following I2C's updates to be un-copyable.
Changed in this revision
DevI2C/DevI2C.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 0dbcdb8dab03 -r 21096473f63e DevI2C/DevI2C.h --- a/DevI2C/DevI2C.h Tue Apr 11 07:32:41 2017 +0000 +++ b/DevI2C/DevI2C.h Tue Aug 08 14:37:26 2017 +0000 @@ -57,7 +57,7 @@ * @param scl I2C clock line pin */ DevI2C(PinName sda, PinName scl) : I2C(sda, scl) {} - + /** * @brief Writes a buffer towards the I2C peripheral device. * @param pBuffer pointer to the byte-array data to send