comparison nucleus/sd_extr.h @ 0:75a11d740a02

initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 09 Jun 2016 00:02:41 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:75a11d740a02
1 /*************************************************************************
2 *
3 * Copyright Mentor Graphics Corporation 2002
4 * All Rights Reserved.
5 *
6 * THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS
7 * THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS
8 * SUBJECT TO LICENSE TERMS.
9 *
10 *************************************************************************/
11
12 /*************************************************************************
13 *
14 * FILE NAME VERSION
15 *
16 * sd_extr.h Nucleus PLUS\ARM925\Code Composer 1.14.1
17 *
18 * COMPONENT
19 *
20 * SD - Serial Driver
21 *
22 * DESCRIPTION
23 *
24 * This file contains function prototypes for the Serial Driver
25 * module.
26 *
27 * DATA STRUCTURES
28 *
29 * none
30 *
31 * DEPENDENCIES
32 *
33 * sd_defs.h
34 *
35 * HISTORY
36 *
37 * NAME DATE REMARKS
38 *
39 * B. Ronquillo 08-28-2002 Released version 1.14.1
40 *************************************************************************/
41 #ifndef SD_EXTR
42 #define SD_EXTR
43
44 #include "sd_defs.h"
45
46 /* SDC function prototypes */
47 STATUS SDC_Init_Port(SD_PORT *);
48
49 /* Fixed SPR 249. Changed the first parameter of SDC_Put_Char from UNSIGNED_CHAR
50 to CHAR to match function */
51 VOID SDC_Put_Char(UINT8, SD_PORT *);
52
53 VOID SDC_Put_String(CHAR *, SD_PORT *);
54 CHAR SDC_Get_Char(SD_PORT *);
55 STATUS SDC_Data_Ready(SD_PORT *);
56 VOID SDC_LISR(INT vector);
57 #endif
58