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 |
Functions called by interrupts vectors.
|
|
25 |
*/
|
|
26 |
/*
|
|
27 |
This is a part of the driver, of course !
|
|
28 |
But you have to put your code in this functions,
|
|
29 |
if you plan to use interruptions.
|
|
30 |
*/
|
|
31 |
|
9
|
32 |
#include "../include/data.h"
|
0
|
33 |
#include "../include/hcs12/applicfg.h"
|
|
34 |
#include "../include/hcs12/error.h"
|
|
35 |
#include "../include/hcs12/candriver.h"
|
|
36 |
#include "../include/hcs12/asm-m68hc12/regs.h"
|
|
37 |
#include "../include/hcs12/asm-m68hc12/portsaccess.h"
|
|
38 |
#include "../include/hcs12/asm-m68hc12/ports_def.h"
|
|
39 |
#include "../include/hcs12/asm-m68hc12/ports.h"
|
|
40 |
#include "../include/hcs12/interrupt.h"
|
|
41 |
|
|
42 |
extern volatile char msgRecu;
|
|
43 |
extern volatile Message canMsgRcv;
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
/* Inhibe les interruptions */
|
|
48 |
|
|
49 |
void lock (void)
|
|
50 |
{
|
|
51 |
unsigned short mask;
|
|
52 |
__asm__ __volatile__ ("tpa\n\tsei" : "=d"(mask));
|
|
53 |
|
|
54 |
}
|
|
55 |
|
|
56 |
/* Autorise les interruptions */
|
|
57 |
void unlock (void)
|
|
58 |
{
|
|
59 |
__asm__ __volatile__ ("cli");
|
|
60 |
}
|
|
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|