diff gsm-fw/g23m-aci/aci/cmh_mmq.c @ 793:c77d5b1fd6a2

aci: got to cmh_mmq.c, compilation failure (something to do with RTC), remains to be investigated and fixed
author Space Falcon <falcon@ivan.Harhan.ORG>
date Fri, 13 Mar 2015 00:29:36 +0000
parents eedbf248bac0
children b380a85d77d5
line wrap: on
line diff
--- a/gsm-fw/g23m-aci/aci/cmh_mmq.c	Thu Mar 12 22:11:27 2015 +0000
+++ b/gsm-fw/g23m-aci/aci/cmh_mmq.c	Fri Mar 13 00:29:36 2015 +0000
@@ -28,6 +28,11 @@
 #define CMH_MMQ_C
 #endif
 
+#include "config.h"
+#include "fixedconf.h"
+#include "condat-features.h"
+#include "aci_conf.h"
+
 #include "aci_all.h"
 
 /*==== INCLUDES ===================================================*/
@@ -72,8 +77,7 @@
 #define DONT_LET_FFSH2_DEF_GPRS
 #endif
 
-#include "ffs/ffs.h"
-
+#include "../../services/ffs/ffs.h"
 
 /* check whether latter has defined GPRS !!! */
 #ifdef DONT_LET_FFSH2_DEF_GPRS
@@ -620,30 +624,27 @@
 
   *regMode = cmhPrm[srcId].mmCmdPrm.NRGregMode;
 
-   switch( *oprFrmt )
+  switch( *oprFrmt )
   {
     case(  NRG_FRMT_NotPresent  ): 
-    copsFormat = COPS_FRMT_NotPresent; 
-    break;
+      copsFormat = COPS_FRMT_NotPresent; 
+      break;
     case( NRG_FRMT_Numeric   ): 
-    copsFormat = COPS_FRMT_Numeric  ; 
-    break;
+      copsFormat = COPS_FRMT_Numeric  ; 
+      break;
     case( NRG_FRMT_Short):
-    copsFormat = COPS_FRMT_Short ; 
-    break;
+      copsFormat = COPS_FRMT_Short ; 
+      break;
     case( NRG_FRMT_Long):
-    copsFormat = COPS_FRMT_Long; 
-    break;
+      copsFormat = COPS_FRMT_Long; 
+      break;
     default:
       ACI_ERR_DESC( ACI_ERR_CLASS_Ext, EXT_ERR_Parameter );
       return( AT_FAIL );
   }
 
-
   cmhMM_OperatorQuery(srcId,copsFormat,oper);
 
-  
-
   return( AT_CMPL );
 }