comparison gsm-fw/g23m-aci/uart/uart_rxp.c @ 779:f54080301c98

UART protocol stack entity compiles
author Michael Spacefalcon <falcon@ivan.Harhan.ORG>
date Sat, 07 Mar 2015 23:55:47 +0000
parents eedbf248bac0
children
comparison
equal deleted inserted replaced
778:ac329f4627ac 779:f54080301c98
21 */ 21 */
22 22
23 #ifndef UART_RXP_C 23 #ifndef UART_RXP_C
24 #define UART_RXP_C 24 #define UART_RXP_C
25 #endif /* !UART_RXP_C */ 25 #endif /* !UART_RXP_C */
26
27 #include "config.h"
28 #include "fixedconf.h"
29 #include "condat-features.h"
26 30
27 #define ENTITY_UART 31 #define ENTITY_UART
28 32
29 #ifndef FF_MULTI_PORT 33 #ifndef FF_MULTI_PORT
30 /*==== INCLUDES =============================================================*/ 34 /*==== INCLUDES =============================================================*/
41 #include "mon_uart.h" /* to get mon-definitions */ 45 #include "mon_uart.h" /* to get mon-definitions */
42 #include "prim.h" /* to get the definitions of used SAP and directions */ 46 #include "prim.h" /* to get the definitions of used SAP and directions */
43 #include "dti.h" /* to get dti lib */ 47 #include "dti.h" /* to get dti lib */
44 #include "pei.h" /* to get PEI interfac */ 48 #include "pei.h" /* to get PEI interfac */
45 #ifdef _TARGET_ 49 #ifdef _TARGET_
46 #include "uart/serialswitch.h" 50 #include "../../serial/serialswitch.h"
47 #include "uart/traceswitch.h" 51 #include "../../serial/traceswitch.h"
48 #else /* _TARGET_ */ 52 #else /* _TARGET_ */
49 #include "serial_dat.h" /* to get definitions of serial driver */ 53 #include "serial_dat.h" /* to get definitions of serial driver */
50 #endif /* _TARGET_ */ 54 #endif /* _TARGET_ */
51 #include "uart.h" /* to get the global entity definitions */ 55 #include "uart.h" /* to get the global entity definitions */
52 56