changeset 319:2c760f6b1fe0

gsm-fw/gpf/frame: everything compiles except vsi_trc.c
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 11 Apr 2014 08:13:52 +0000
parents 0c87c1f9dac5
children 397b22c607c8
files gsm-fw/gpf/frame/frm_ext.c gsm-fw/gpf/frame/iram/Makefile gsm-fw/gpf/frame/route.c gsm-fw/gpf/frame/vsi_com.c gsm-fw/gpf/frame/vsi_drv.c gsm-fw/gpf/frame/vsi_mem.c gsm-fw/gpf/frame/vsi_mis.c gsm-fw/gpf/frame/vsi_ppm.c gsm-fw/gpf/frame/vsi_pro.c gsm-fw/gpf/frame/vsi_sem.c gsm-fw/gpf/frame/vsi_tim.c gsm-fw/gpf/frame/vsi_trc.c gsm-fw/gpf/frame/xip/Makefile
diffstat 13 files changed, 33 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/gsm-fw/gpf/frame/frm_ext.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/frm_ext.c	Fri Apr 11 08:13:52 2014 +0000
@@ -1,6 +1,6 @@
 /* 
 +------------------------------------------------------------------------------
-|  File:       frm_ext.h
+|  File:       frm_ext.c
 +------------------------------------------------------------------------------
 |  Copyright 2005 Texas Instruments Berlin, AG 
 |                 All rights reserved. 
@@ -25,6 +25,7 @@
 #include <stdio.h>
 #include <string.h>
 
+#include "gpfconf.h"
 #include "typedefs.h"
 #include "os.h"
 #include "vsi.h"
@@ -53,11 +54,11 @@
 /*==== VARIABLES ==================================================*/
 
 #ifndef _TOOLS_
-#ifndef RUN_INT_RAM
- T_lemu_SendToQueue lemu_SendToQueue_func; 
+#ifndef RUN_INT_RAM
+ T_lemu_SendToQueue lemu_SendToQueue_func;
 #else
- extern T_lemu_SendToQueue lemu_SendToQueue_func; 
-#endif
+ extern T_lemu_SendToQueue lemu_SendToQueue_func;
+#endif
 #endif
 
 /*==== FUNCTIONS ==================================================*/
--- a/gsm-fw/gpf/frame/iram/Makefile	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/iram/Makefile	Fri Apr 11 08:13:52 2014 +0000
@@ -3,7 +3,9 @@
 CPPFLAGS=-I../../inc -DRUN_INT_RAM
 VPATH=	..
 
-OBJS=	frame.o
+OBJS=	frame.o prf_func.o route.o \
+	vsi_com.o vsi_drv.o vsi_mem.o vsi_mis.o vsi_ppm.o \
+	vsi_pro.o vsi_sem.o vsi_tim.o #vsi_trc.o
 
 all:	${OBJS}
 
--- a/gsm-fw/gpf/frame/route.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/route.c	Fri Apr 11 08:13:52 2014 +0000
@@ -27,6 +27,7 @@
 #include <stdio.h>
 #include <string.h>
 
+#include "gpfconf.h"
 #include "typedefs.h"
 #include "os.h"
 #include "vsi.h"
--- a/gsm-fw/gpf/frame/vsi_com.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_com.c	Fri Apr 11 08:13:52 2014 +0000
@@ -26,6 +26,7 @@
 
 /*==== INCLUDES ===================================================*/
 
+#include "gpfconf.h"
 #include "typedefs.h"
 #include "string.h"
 #include "os.h"
--- a/gsm-fw/gpf/frame/vsi_drv.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_drv.c	Fri Apr 11 08:13:52 2014 +0000
@@ -24,8 +24,10 @@
 
 /*==== INCLUDES ===================================================*/
 
-#include "string.h"
-#include "stdio.h"
+#include <string.h>
+#include <stdio.h>
+
+#include "gpfconf.h"
 #include "typedefs.h"
 
 #include "vsi.h"
--- a/gsm-fw/gpf/frame/vsi_mem.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_mem.c	Fri Apr 11 08:13:52 2014 +0000
@@ -24,8 +24,9 @@
 
 /*==== INCLUDES ===================================================*/
 
-#include "string.h"
+#include <string.h>
 
+#include "gpfconf.h"
 #include "typedefs.h"
 #include "vsi.h"
 #include "os.h"
--- a/gsm-fw/gpf/frame/vsi_mis.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_mis.c	Fri Apr 11 08:13:52 2014 +0000
@@ -26,6 +26,7 @@
 
 #include <string.h>
 
+#include "gpfconf.h"
 #include "typedefs.h"
 
 #include "vsi.h"
--- a/gsm-fw/gpf/frame/vsi_ppm.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_ppm.c	Fri Apr 11 08:13:52 2014 +0000
@@ -22,11 +22,13 @@
 #define __VSI_PPM_C__
 #endif
 
+#include "gpfconf.h"
+
 #ifdef MEMORY_SUPERVISION
 
 /*==== INCLUDES ===================================================*/
 
-#include "string.h"
+#include <string.h>
 #include "typedefs.h"
 #include "os.h"
 #include "vsi.h"
--- a/gsm-fw/gpf/frame/vsi_pro.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_pro.c	Fri Apr 11 08:13:52 2014 +0000
@@ -25,7 +25,9 @@
 
 /*==== INCLUDES ===================================================*/
 
-#include "string.h"
+#include <string.h>
+
+#include "gpfconf.h"
 #include "typedefs.h"
 #include "os.h"
 #include "vsi.h"
--- a/gsm-fw/gpf/frame/vsi_sem.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_sem.c	Fri Apr 11 08:13:52 2014 +0000
@@ -24,6 +24,7 @@
 
 /*==== INCLUDES ===================================================*/
 
+#include "gpfconf.h"
 #include "typedefs.h"
 #include "vsi.h"
 #include "os.h"
--- a/gsm-fw/gpf/frame/vsi_tim.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_tim.c	Fri Apr 11 08:13:52 2014 +0000
@@ -24,8 +24,10 @@
 
 /*==== INCLUDES ===================================================*/
 
+#include <string.h>
+
+#include "gpfconf.h"
 #include "typedefs.h"
-#include "string.h"
 
 #include "vsi.h"
 #include "os.h"
--- a/gsm-fw/gpf/frame/vsi_trc.c	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/vsi_trc.c	Fri Apr 11 08:13:52 2014 +0000
@@ -42,6 +42,8 @@
 #endif
 #include <stdio.h>
 #include <string.h>
+
+#include "gpfconf.h"
 #include "typedefs.h"
 
 #include "vsi.h"
--- a/gsm-fw/gpf/frame/xip/Makefile	Fri Apr 11 05:46:44 2014 +0000
+++ b/gsm-fw/gpf/frame/xip/Makefile	Fri Apr 11 08:13:52 2014 +0000
@@ -3,7 +3,9 @@
 CPPFLAGS=-I../../inc -DRUN_FLASH
 VPATH=	..
 
-OBJS=	frame.o
+OBJS=	frame.o frame_version.o frm_ext.o prf_func.o route.o \
+	vsi_com.o vsi_drv.o vsi_mem.o vsi_mis.o vsi_ppm.o \
+	vsi_pro.o vsi_sem.o vsi_tim.o #vsi_trc.o
 
 all:	${OBJS}