comparison gsm-fw/nucleus/sd_extr.h @ 143:afceeeb2cba1

Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 12 Nov 2013 05:35:48 +0000
parents nuc-fw/nucleus/sd_extr.h@947b1f473960
children
comparison
equal deleted inserted replaced
142:15d5977390c2 143:afceeeb2cba1
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