]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_LM3S316_IAR/hw_include/cspy.c
Remove needs-lock SVN parameter from files in the CORTEX-LM3Sxxxx_IAR_KEIL directory.
[freertos] / Demo / CORTEX_LM3S316_IAR / hw_include / cspy.c
1 //*****************************************************************************\r
2 //\r
3 // cspy.c - Routines for simply ignoring the debugger communciation APIs in\r
4 //          C-Spy for now.\r
5 //\r
6 // Copyright (c) 2005,2006 Luminary Micro, Inc.  All rights reserved.\r
7 //\r
8 // Software License Agreement\r
9 //\r
10 // Luminary Micro, Inc. (LMI) is supplying this software for use solely and\r
11 // exclusively on LMI's Stellaris Family of microcontroller products.\r
12 //\r
13 // The software is owned by LMI and/or its suppliers, and is protected under\r
14 // applicable copyright laws.  All rights are reserved.  Any use in violation\r
15 // of the foregoing restrictions may subject the user to criminal sanctions\r
16 // under applicable laws, as well as to civil liability for the breach of the\r
17 // terms and conditions of this license.\r
18 //\r
19 // THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
20 // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
22 // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
23 // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
24 //\r
25 // This is part of revision 635 of the Stellaris Driver Library.\r
26 //\r
27 //*****************************************************************************\r
28 \r
29 #include "diag.h"\r
30 \r
31 //*****************************************************************************\r
32 //\r
33 // Open a handle for stdio functions (both stdin and stdout).\r
34 //\r
35 //*****************************************************************************\r
36 int\r
37 DiagOpenStdio(void)\r
38 {\r
39     return(-1);\r
40 }\r
41 \r
42 //*****************************************************************************\r
43 //\r
44 // Open a host file system file.\r
45 //\r
46 //*****************************************************************************\r
47 int\r
48 DiagOpen(const char *pcName, int iMode)\r
49 {\r
50     return(-1);\r
51 }\r
52 \r
53 //*****************************************************************************\r
54 //\r
55 // Close a host file system file.\r
56 //\r
57 //*****************************************************************************\r
58 int\r
59 DiagClose(int iHandle)\r
60 {\r
61     return(-1);\r
62 }\r
63 \r
64 //*****************************************************************************\r
65 //\r
66 // Write data to a host file system file.\r
67 //\r
68 //*****************************************************************************\r
69 int\r
70 DiagWrite(int iHandle, const char *pcBuf, unsigned long ulLen, int iMode)\r
71 {\r
72     return(-1);\r
73 }\r
74 \r
75 //*****************************************************************************\r
76 //\r
77 // Read data from a host file system file.\r
78 //\r
79 //*****************************************************************************\r
80 int\r
81 DiagRead(int iHandle, char *pcBuf, unsigned long ulLen, int iMode)\r
82 {\r
83     return(-1);\r
84 }\r
85 \r
86 //*****************************************************************************\r
87 //\r
88 // Get the length of a host file system file.\r
89 //\r
90 //*****************************************************************************\r
91 long\r
92 DiagFlen(int iHandle)\r
93 {\r
94     return(-1);\r
95 }\r
96 \r
97 //*****************************************************************************\r
98 //\r
99 // Terminate the application.\r
100 //\r
101 //*****************************************************************************\r
102 void\r
103 DiagExit(int iRet)\r
104 {\r
105     while(1)\r
106     {\r
107     }\r
108 }\r
109 \r
110 //*****************************************************************************\r
111 //\r
112 // Get the command line arguments from the debugger.\r
113 //\r
114 //*****************************************************************************\r
115 char *\r
116 DiagCommandString(char *pcBuf, unsigned long ulLen)\r
117 {\r
118     return(0);\r
119 }\r