1
0
Fork 0
CANopenNode/example/application.c
Janez_D b50cb5e8b3 Cleanup in comments (no code changed).
Add and update multiple readme.txt
Remove SVN IDs.
2015-07-25 17:36:46 +02:00

58 lines
1.6 KiB
C

/*
* Header for application interface for CANopenNode stack.
*
* @file application.c
* @ingroup application
* @author Janez Paternoster
* @copyright 2012 - 2013 Janez Paternoster
*
* This file is part of CANopenNode, an opensource CANopen Stack.
* Project home page is <http://canopennode.sourceforge.net>.
* For more information on CANopen see <http://www.can-cia.org/>.
*
* CANopenNode is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "CANopen.h"
/*******************************************************************************/
void programStart(void){
}
/*******************************************************************************/
void communicationReset(void){
}
/*******************************************************************************/
void programEnd(void){
}
/*******************************************************************************/
void programAsync(uint16_t timer1msDiff){
}
/*******************************************************************************/
void program1ms(void){
}