[Epic-ID: ODUHIGH-516][Task-ID: ODUHIGH-531] RIC Subscription Modification Refuse
[o-du/l2.git] / src / du_app / du_tmr.h
index d7529b7..54aced7 100644 (file)
 #define DU_TIMER_RESOLUTION 1
 #define DU_TQ_SIZE 2
 
-/**
- * @def DU_TMR_CALCUATE_WAIT
- *
- *    This macro calculates and assigns wait time based on the value of the
- *    timer and the timer resolution. Timer value of 0 signifies that the
- *    timer is not configured
- *
- * @param[out] _wait   Time for which to arm the timer changed to proper
- *                     value according to the resolution
- * @param[in] _tmrVal   Value of the timer
- * @param[in] _timerRes   Resolution of the timer
- *
-*/
-#define DU_TMR_CALCUATE_WAIT(_wait, _tmrVal, _timerRes)       \
-{                                                             \
-   (_wait) = ((_tmrVal) * SS_TICKS_SEC)/((_timerRes) * 1000); \
-   if((0 != (_tmrVal)) && (0 == (_wait)))                     \
-   {                                                          \
-      (_wait) = 1;                                            \
-   }                                                          \
-}
-
 short int duActvTmr(Ent ent,Inst inst); 
 bool duChkTmr(PTR cb, int16_t tmrEvnt);
-void duStartTmr(PTR cb, int16_t tmrEvnt, uint8_t timerValue);
+void duStartTmr(PTR cb, int16_t tmrEvnt, uint32_t timerValue);
 
 /**********************************************************************
   End of file