drivers/hcs12/interrupt.c
changeset 0 4472ee7c6c3e
child 9 49f701f3dca7
equal deleted inserted replaced
-1:000000000000 0:4472ee7c6c3e
       
     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 
       
    32 #include "../include/hcs12/applicfg.h"
       
    33 #include "../include/hcs12/error.h"
       
    34 #include "../include/hcs12/candriver.h"
       
    35 #include "../include/hcs12/asm-m68hc12/regs.h"
       
    36 #include "../include/hcs12/asm-m68hc12/portsaccess.h"
       
    37 #include "../include/hcs12/asm-m68hc12/ports_def.h"
       
    38 #include "../include/hcs12/asm-m68hc12/ports.h"
       
    39 #include "../include/hcs12/interrupt.h"
       
    40 
       
    41 extern volatile char msgRecu;
       
    42 extern volatile Message canMsgRcv;
       
    43 
       
    44 
       
    45 
       
    46 /* Inhibe les interruptions */
       
    47 
       
    48 void lock (void)
       
    49 {
       
    50    unsigned short mask;
       
    51    __asm__ __volatile__ ("tpa\n\tsei" : "=d"(mask));
       
    52 
       
    53 }
       
    54 
       
    55 /* Autorise les interruptions */
       
    56 void unlock (void)
       
    57 { 
       
    58    __asm__ __volatile__ ("cli");
       
    59 }
       
    60 
       
    61 
       
    62 
       
    63