NRF com

Dependencies:   mbed nRF24L01P

Committer:
vmihalcut
Date:
Mon May 27 06:06:31 2013 +0000
Revision:
0:fdfe93cb9255
NRF24L01 receiver

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vmihalcut 0:fdfe93cb9255 1 ;/*----------------------------------------------------------------------------
vmihalcut 0:fdfe93cb9255 2 ; * RL-ARM - RTX
vmihalcut 0:fdfe93cb9255 3 ; *----------------------------------------------------------------------------
vmihalcut 0:fdfe93cb9255 4 ; * Name: SVC_TABLE.S
vmihalcut 0:fdfe93cb9255 5 ; * Purpose: Pre-defined SVC Table for Cortex-M
vmihalcut 0:fdfe93cb9255 6 ; * Rev.: V4.60
vmihalcut 0:fdfe93cb9255 7 ; *----------------------------------------------------------------------------
vmihalcut 0:fdfe93cb9255 8 ; *
vmihalcut 0:fdfe93cb9255 9 ; * Copyright (c) 1999-2009 KEIL, 2009-2012 ARM Germany GmbH
vmihalcut 0:fdfe93cb9255 10 ; * All rights reserved.
vmihalcut 0:fdfe93cb9255 11 ; * Redistribution and use in source and binary forms, with or without
vmihalcut 0:fdfe93cb9255 12 ; * modification, are permitted provided that the following conditions are met:
vmihalcut 0:fdfe93cb9255 13 ; * - Redistributions of source code must retain the above copyright
vmihalcut 0:fdfe93cb9255 14 ; * notice, this list of conditions and the following disclaimer.
vmihalcut 0:fdfe93cb9255 15 ; * - Redistributions in binary form must reproduce the above copyright
vmihalcut 0:fdfe93cb9255 16 ; * notice, this list of conditions and the following disclaimer in the
vmihalcut 0:fdfe93cb9255 17 ; * documentation and/or other materials provided with the distribution.
vmihalcut 0:fdfe93cb9255 18 ; * - Neither the name of ARM nor the names of its contributors may be used
vmihalcut 0:fdfe93cb9255 19 ; * to endorse or promote products derived from this software without
vmihalcut 0:fdfe93cb9255 20 ; * specific prior written permission.
vmihalcut 0:fdfe93cb9255 21 ; *
vmihalcut 0:fdfe93cb9255 22 ; * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
vmihalcut 0:fdfe93cb9255 23 ; * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
vmihalcut 0:fdfe93cb9255 24 ; * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
vmihalcut 0:fdfe93cb9255 25 ; * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
vmihalcut 0:fdfe93cb9255 26 ; * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
vmihalcut 0:fdfe93cb9255 27 ; * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
vmihalcut 0:fdfe93cb9255 28 ; * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
vmihalcut 0:fdfe93cb9255 29 ; * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
vmihalcut 0:fdfe93cb9255 30 ; * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
vmihalcut 0:fdfe93cb9255 31 ; * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
vmihalcut 0:fdfe93cb9255 32 ; * POSSIBILITY OF SUCH DAMAGE.
vmihalcut 0:fdfe93cb9255 33 ; *---------------------------------------------------------------------------*/
vmihalcut 0:fdfe93cb9255 34
vmihalcut 0:fdfe93cb9255 35
vmihalcut 0:fdfe93cb9255 36 AREA SVC_TABLE, CODE, READONLY
vmihalcut 0:fdfe93cb9255 37
vmihalcut 0:fdfe93cb9255 38 EXPORT SVC_Count
vmihalcut 0:fdfe93cb9255 39
vmihalcut 0:fdfe93cb9255 40 SVC_Cnt EQU (SVC_End-SVC_Table)/4
vmihalcut 0:fdfe93cb9255 41 SVC_Count DCD SVC_Cnt
vmihalcut 0:fdfe93cb9255 42
vmihalcut 0:fdfe93cb9255 43 ; Import user SVC functions here.
vmihalcut 0:fdfe93cb9255 44 ; IMPORT __SVC_1
vmihalcut 0:fdfe93cb9255 45
vmihalcut 0:fdfe93cb9255 46 EXPORT SVC_Table
vmihalcut 0:fdfe93cb9255 47 SVC_Table
vmihalcut 0:fdfe93cb9255 48 ; Insert user SVC functions here. SVC 0 used by RTL Kernel.
vmihalcut 0:fdfe93cb9255 49 ; DCD __SVC_1 ; user SVC function
vmihalcut 0:fdfe93cb9255 50
vmihalcut 0:fdfe93cb9255 51 SVC_End
vmihalcut 0:fdfe93cb9255 52
vmihalcut 0:fdfe93cb9255 53 END
vmihalcut 0:fdfe93cb9255 54
vmihalcut 0:fdfe93cb9255 55 /*----------------------------------------------------------------------------
vmihalcut 0:fdfe93cb9255 56 * end of file
vmihalcut 0:fdfe93cb9255 57 *---------------------------------------------------------------------------*/