library for C++ CANOpen implementation. mbed independant, but is easy to attach into with mbed.

Dependents:   ppCANOpen_Example DISCO-F746NG_rtos_test

Example:

Import programppCANOpen_Example

I am no longer actively working on the ppCANOpen library, however, I want to publish this project so that anyone who wants to pick up any of the pieces can have a good example. This is a a project I was working on using the ppCANOpen library. It has a pretty in deep use of the object dictionary structure. And a number of functions to control high voltage pinball drivers, if you're into that sort of thing.

Committer:
ptpaterson
Date:
Sat Feb 13 20:22:59 2016 +0000
Revision:
5:22a337cdc0e3
Parent:
2:c724ff3a4e4d
PDO receive complete

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ptpaterson 0:1865da4a634c 1 /**
ptpaterson 0:1865da4a634c 2 ******************************************************************************
ptpaterson 0:1865da4a634c 3 * @file
ptpaterson 0:1865da4a634c 4 * @author Paul Paterson
ptpaterson 0:1865da4a634c 5 * @version
ptpaterson 0:1865da4a634c 6 * @date 2015-12-14
ptpaterson 0:1865da4a634c 7 * @brief CANOpen implementation library
ptpaterson 0:1865da4a634c 8 ******************************************************************************
ptpaterson 0:1865da4a634c 9 * @attention
ptpaterson 0:1865da4a634c 10 *
ptpaterson 0:1865da4a634c 11 * <h2><center>&copy; COPYRIGHT(c) 2015 Paul Paterson
ptpaterson 0:1865da4a634c 12 *
ptpaterson 0:1865da4a634c 13 * All rights reserved.
ptpaterson 0:1865da4a634c 14
ptpaterson 0:1865da4a634c 15 This program is free software: you can redistribute it and/or modify
ptpaterson 0:1865da4a634c 16 it under the terms of the GNU General Public License as published by
ptpaterson 0:1865da4a634c 17 the Free Software Foundation, either version 3 of the License, or
ptpaterson 0:1865da4a634c 18 (at your option) any later version.
ptpaterson 0:1865da4a634c 19
ptpaterson 0:1865da4a634c 20 This program is distributed in the hope that it will be useful,
ptpaterson 0:1865da4a634c 21 but WITHOUT ANY WARRANTY; without even the implied warranty of
ptpaterson 0:1865da4a634c 22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ptpaterson 0:1865da4a634c 23 GNU General Public License for more details.
ptpaterson 0:1865da4a634c 24
ptpaterson 0:1865da4a634c 25 You should have received a copy of the GNU General Public License
ptpaterson 0:1865da4a634c 26 along with this program. If not, see <http://www.gnu.org/licenses/>.
ptpaterson 0:1865da4a634c 27 */
ptpaterson 0:1865da4a634c 28
ptpaterson 0:1865da4a634c 29 #ifndef PP_CANOPEN_H
ptpaterson 0:1865da4a634c 30 #define PP_CANOPEN_H
ptpaterson 0:1865da4a634c 31
ptpaterson 2:c724ff3a4e4d 32 #include "ServiceProvider.h"
ptpaterson 0:1865da4a634c 33 #include "Node.h"
ptpaterson 2:c724ff3a4e4d 34 #include "ObjectDictionary.h"
ptpaterson 0:1865da4a634c 35
ptpaterson 0:1865da4a634c 36 using namespace ppCANOpen;
ptpaterson 0:1865da4a634c 37
ptpaterson 0:1865da4a634c 38 #endif /* PP_CANOPEN_H */