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.
Revision 5:768a6d2a76ef, committed 2020-03-05
- Comitter:
- sebbarpar
- Date:
- Thu Mar 05 11:03:43 2020 +0000
- Parent:
- 4:c4d879a39775
- Commit message:
- Lab4 part 1;
Changed in this revision
MMA8451Q.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/MMA8451Q.cpp Fri Oct 12 11:35:07 2012 +0000 +++ b/MMA8451Q.cpp Thu Mar 05 11:03:43 2020 +0000 @@ -71,7 +71,7 @@ } void MMA8451Q::readRegs(int addr, uint8_t * data, int len) { - char t[1] = {addr}; + char t[1] = {(char) addr}; m_i2c.write(m_addr, t, 1, true); m_i2c.read(m_addr, (char *)data, len); }