|
2
|
1 #ifndef CYGONCE_QUICC_SMC_H |
|
|
2 #define CYGONCE_QUICC_SMC_H |
|
|
3 //============================================================================= |
|
|
4 //####UNSUPPORTEDBEGIN#### |
|
|
5 // |
|
|
6 // ------------------------------------------- |
|
|
7 // This source file has been contributed to eCos/Cygnus. It may have been |
|
|
8 // changed slightly to provide an interface consistent with those of other |
|
|
9 // files. |
|
|
10 // |
|
|
11 // The functionality and contents of this file is supplied "AS IS" |
|
|
12 // without any form of support and will not necessarily be kept up |
|
|
13 // to date by Cygnus. |
|
|
14 // |
|
|
15 // The style of programming used in this file may not comply with the |
|
|
16 // eCos programming guidelines. Please do not use as a base for other |
|
|
17 // files. |
|
|
18 // |
|
|
19 // All inquiries about this file, or the functionality provided by it, |
|
|
20 // should be directed to the 'ecos-discuss' mailing list (see |
|
|
21 // http://sourceware.cygnus.com/ecos/intouch.html for details). |
|
|
22 // |
|
|
23 // Contributed by: Kevin Hester <khester@opticworks.com> |
|
|
24 // Maintained by: <Unmaintained> |
|
|
25 // See also: |
|
|
26 // Motorola's "Example Software Initializing the SMC as a UART" package |
|
|
27 // (smc2.zip) at: |
|
|
28 // http://www.mot.com/SPS/RISC/netcomm/tools/index.html#MPC860_table |
|
|
29 // ------------------------------------------- |
|
|
30 // |
|
|
31 //####UNSUPPORTEDEND#### |
|
|
32 //============================================================================= |
|
|
33 |
|
|
34 extern void cyg_smc2_init(unsigned long baudRate); |
|
|
35 extern void cyg_smc2_putchar(char); |
|
|
36 extern char cyg_smc2_getchar(void); |
|
|
37 |
|
|
38 #endif |
|
|
39 |
|
|
40 |