0
|
1 |
/*
|
|
2 |
This file is part of CanFestival, a library implementing CanOpen Stack.
|
|
3 |
|
|
4 |
Copyright (C): Edouard TISSERANT and Francis DUPIN
|
|
5 |
|
|
6 |
See COPYING file for copyrights details.
|
|
7 |
|
|
8 |
This library is free software; you can redistribute it and/or
|
|
9 |
modify it under the terms of the GNU Lesser General Public
|
|
10 |
License as published by the Free Software Foundation; either
|
|
11 |
version 2.1 of the License, or (at your option) any later version.
|
|
12 |
|
|
13 |
This library is distributed in the hope that it will be useful,
|
|
14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
16 |
Lesser General Public License for more details.
|
|
17 |
|
|
18 |
You should have received a copy of the GNU Lesser General Public
|
|
19 |
License along with this library; if not, write to the Free Software
|
|
20 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
21 |
*/
|
|
22 |
|
|
23 |
|
|
24 |
#ifndef __CANOPENDRIVER__
|
|
25 |
#define __CANOPENDRIVER__
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
// --------- to be called by user app ---------
|
|
30 |
|
|
31 |
void initTimer(void);
|
|
32 |
void resetTimer(void);
|
|
33 |
void TimerLoop(void);
|
|
34 |
|
|
35 |
/**
|
|
36 |
Returns 0 if no message received, 0xFF if the receiving stack is not empty.
|
|
37 |
May be call in polling.
|
|
38 |
You can also call canDispatch(...) in void __attribute__((interrupt)) can0HdlRcv (void)
|
|
39 |
(see include/hcs12/canOpenDriver.c)
|
|
40 |
*/
|
|
41 |
UNS8 f_can_receive(UNS8 notused, Message *m);
|
384
|
42 |
UNS8 canChangeBaudRate_driver( CAN_HANDLE fd, char* baud);
|
0
|
43 |
|
|
44 |
#endif
|