diff gsm-fw/L1/cust0/ind_os.c @ 520:ed6071292a5c

L1: first C module compiles: ind_os.c
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Thu, 10 Jul 2014 15:49:38 +0000
parents ffbb71ee664c
children a6ff7b513bcf
line wrap: on
line diff
--- a/gsm-fw/L1/cust0/ind_os.c	Thu Jul 10 15:02:48 2014 +0000
+++ b/gsm-fw/L1/cust0/ind_os.c	Thu Jul 10 15:49:38 2014 +0000
@@ -32,18 +32,18 @@
 //#endif
 
 #if TESTMODE
-  #include "l1tm_defty.h"
+  #include "../tm_include/l1tm_defty.h"
 #endif
 
-#include "l1audio_const.h"
-#include "l1audio_cust.h"
-#include "l1audio_defty.h"
-#include "l1_defty.h"
-#include "l1_msgty.h"
-#include "l1_varex.h"
+#include "../audio_include/l1audio_const.h"
+#include "../audio_cust0/l1audio_cust.h"
+#include "../audio_include/l1audio_defty.h"
+#include "../include/l1_defty.h"
+#include "../include/l1_msgty.h"
+#include "../include/l1_varex.h"
 
 #if (CHIPSET == 2 || CHIPSET == 3 || CHIPSET == 4 || CHIPSET == 5 || CHIPSET == 6 || CHIPSET == 7 || CHIPSET == 8 || CHIPSET == 10 || CHIPSET == 11 || CHIPSET == 12)
-  #include "ulpd.h"
+  #include "../../bsp/ulpd.h"
 #endif
 
 extern UWORD32    TCD_Priority_Groups;
@@ -73,7 +73,7 @@
 
 
  /*-------------------------------------------------------*/
- /* int OS_get_inactivity_ticks()                          */
+ /* int OS_get_inactivity_ticks()                         */
  /*-------------------------------------------------------*/ 
  /* Parameters : none                                     */
  /* Return     : Number of ticks of inactivity            */
@@ -123,7 +123,7 @@
      else 	
    	return TMD_Timer;
    }
-	
+
    // Returns not activity if no timer active
    if (TMD_Timer_State == TM_NOT_ACTIVE) 
    	return -1;
@@ -143,8 +143,8 @@
  /*                 are already protected or not          */
  /*-------------------------------------------------------*/
  void OS_system_protect (void)
- {  
-   NU_Protect((NU_PROTECT*) &TCD_System_Protect);  
+ {
+   NU_Protect((NU_PROTECT*) &TCD_System_Protect);
  }
 
  /*-------------------------------------------------------*/
@@ -155,6 +155,6 @@
  /* Functionality : unprotect the system structures       */
  /*-------------------------------------------------------*/
  void OS_system_Unprotect (void)
- {  
-   NU_Unprotect();  
+ {
+   NU_Unprotect();
  }