Cleanup and refactoring of the STM32w port

This is a general cleanup of things like code style issues and code structure of the STM32w port to make it more like the rest of Contiki is structured.
This commit is contained in:
Adam Dunkels 2013-03-15 16:14:09 +01:00
parent 12b3d02ba1
commit a5046e83c7
118 changed files with 4470 additions and 4281 deletions

View file

@ -18,10 +18,10 @@
#ifdef DEFINETYPES
typedef struct {
int8u vcoAtLna; // the VCO tune value at the time LNA value was calculated.
int8u modDac; // msb : cal needed , bit 0-5 : value
int8u filter; // msb : cal needed , bit 0-4 : value
int8u lna; // msb : cal needed , bit 0-5 : value
uint8_t vcoAtLna; // the VCO tune value at the time LNA value was calculated.
uint8_t modDac; // msb : cal needed , bit 0-5 : value
uint8_t filter; // msb : cal needed , bit 0-4 : value
uint8_t lna; // msb : cal needed , bit 0-5 : value
} tokTypeStackCalData;
#endif