1 /*
2  * Application interface for CANopenNode stack.
3  *
4  * @file        application.c
5  * @ingroup     application
6  * @author      Janez Paternoster
7  * @copyright   2012 - 2020 Janez Paternoster
8  *
9  * This file is part of CANopenNode, an opensource CANopen Stack.
10  * Project home page is <https://github.com/CANopenNode/CANopenNode>.
11  * For more information on CANopen see <http://www.can-cia.org/>.
12  *
13  * Licensed under the Apache License, Version 2.0 (the "License");
14  * you may not use this file except in compliance with the License.
15  * You may obtain a copy of the License at
16  *
17  *     http://www.apache.org/licenses/LICENSE-2.0
18  *
19  * Unless required by applicable law or agreed to in writing, software
20  * distributed under the License is distributed on an "AS IS" BASIS,
21  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22  * See the License for the specific language governing permissions and
23  * limitations under the License.
24  */
25 
26 
27 #include "CANopen.h"
28 
29 
30 /*******************************************************************************/
programStart(void)31 void programStart(void){
32 
33 }
34 
35 
36 /*******************************************************************************/
communicationReset(void)37 void communicationReset(void){
38 
39 }
40 
41 
42 /*******************************************************************************/
programEnd(void)43 void programEnd(void){
44 
45 }
46 
47 
48 /*******************************************************************************/
programAsync(uint16_t timer1msDiff)49 void programAsync(uint16_t timer1msDiff){
50 
51 }
52 
53 
54 /*******************************************************************************/
program1ms(void)55 void program1ms(void){
56 
57 }
58