CANfestival - an open source CANopen framework

Dependencies:   mbed

Committer:
sam_grove
Date:
Wed Sep 26 05:43:05 2012 +0000
Revision:
6:bc64031ac849
Parent:
0:6219434a0cb5
Change a typecast in can_mbed.cpp from unit8_t * to char * to fit the CANMessage constructor

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sam_grove 0:6219434a0cb5 1
sam_grove 0:6219434a0cb5 2
sam_grove 0:6219434a0cb5 3 #ifndef PORT_HELPER_H
sam_grove 0:6219434a0cb5 4 #define PORT_HELPER_H
sam_grove 0:6219434a0cb5 5
sam_grove 0:6219434a0cb5 6 #include "canfestival.h"
sam_grove 0:6219434a0cb5 7 #include "mbed.h"
sam_grove 0:6219434a0cb5 8
sam_grove 0:6219434a0cb5 9 void initHelper();
sam_grove 0:6219434a0cb5 10 void serviceHelper();
sam_grove 0:6219434a0cb5 11 void serviceCOMCommands();
sam_grove 0:6219434a0cb5 12
sam_grove 0:6219434a0cb5 13 void printMsg(Message& msg);
sam_grove 0:6219434a0cb5 14 void printMsg(CANMessage& msg);
sam_grove 0:6219434a0cb5 15
sam_grove 0:6219434a0cb5 16 #endif