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.
Fork of Repo_Noeud_Mobile by
Diff: Communication/Xbee.cpp
- Revision:
- 41:0cb286b1005e
- Parent:
- 39:558cd5780490
- Child:
- 42:94d329a40290
--- a/Communication/Xbee.cpp Mon Apr 06 21:09:41 2015 +0000 +++ b/Communication/Xbee.cpp Tue Apr 07 15:10:29 2015 +0000 @@ -76,7 +76,7 @@ void Xbee::EnvoyerStructure(Mobile_Vers_Fixe mvf) { - char data[8]; + char data[8] = {}; data[0] = mvf.gants; data[1] = mvf.accelData.x >> 8; @@ -95,7 +95,7 @@ void Xbee::EnvoyerStructure(Mobile_Vers_Fixe* mvf) { - char data[8]; + char data[8] = {}; data[0] = mvf->gants; data[1] = mvf->accelData.x >> 8;