aboutsummaryrefslogtreecommitdiffstats
path: root/ucs2-lib/src/ucs_timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'ucs2-lib/src/ucs_timer.c')
-rw-r--r--ucs2-lib/src/ucs_timer.c456
1 files changed, 0 insertions, 456 deletions
diff --git a/ucs2-lib/src/ucs_timer.c b/ucs2-lib/src/ucs_timer.c
deleted file mode 100644
index 6563374..0000000
--- a/ucs2-lib/src/ucs_timer.c
+++ /dev/null
@@ -1,456 +0,0 @@
-/*------------------------------------------------------------------------------------------------*/
-/* UNICENS V2.1.0-3491 */
-/* Copyright (c) 2017 Microchip Technology Germany II GmbH & Co. KG. */
-/* */
-/* This program is free software: you can redistribute it and/or modify */
-/* it under the terms of the GNU General Public License as published by */
-/* the Free Software Foundation, either version 2 of the License, or */
-/* (at your option) any later version. */
-/* */
-/* This program is distributed in the hope that it will be useful, */
-/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
-/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
-/* GNU General Public License for more details. */
-/* */
-/* You should have received a copy of the GNU General Public License */
-/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
-/* */
-/* You may also obtain this software under a propriety license from Microchip. */
-/* Please contact Microchip for further information. */
-/*------------------------------------------------------------------------------------------------*/
-
-/*!
- * \file
- * \brief Implementation of the timer management module.
- *
- * \cond UCS_INTERNAL_DOC
- * \addtogroup G_TIMER
- * @{
- */
-
-/*------------------------------------------------------------------------------------------------*/
-/* Includes */
-/*------------------------------------------------------------------------------------------------*/
-#include "ucs_timer.h"
-#include "ucs_misc.h"
-#include "ucs_trace.h"
-
-/*------------------------------------------------------------------------------------------------*/
-/* Service parameters */
-/*------------------------------------------------------------------------------------------------*/
-/*! Priority of the TM service used by scheduler */
-static const uint8_t TM_SRV_PRIO = 255U; /* parasoft-suppress MISRA2004-8_7 "Value shall be part of the module, not part of a function." */
-/*! Main event for the TM service */
-static const Srv_Event_t TM_EVENT_UPDATE_TIMERS = 1U;
-
-/*------------------------------------------------------------------------------------------------*/
-/* Internal prototypes */
-/*------------------------------------------------------------------------------------------------*/
-static void Tm_Service(void *self);
-static void Tm_UpdateTimers(CTimerManagement *self);
-static bool Tm_HandleElapsedTimer(CTimerManagement *self);
-static bool Tm_UpdateTimersAdd(void *c_timer_ptr, void *n_timer_ptr);
-static void Tm_SetTimerInternal(CTimerManagement *self,
- CTimer *timer_ptr,
- Tm_Handler_t handler_fptr,
- void *args_ptr,
- uint16_t elapse,
- uint16_t period);
-
-/*------------------------------------------------------------------------------------------------*/
-/* Implementation of class CTimerManagement */
-/*------------------------------------------------------------------------------------------------*/
-/*! \brief Constructor of the timer management class.
- * \param self Instance pointer
- * \param scd Scheduler instance
- * \param init_ptr Reference to the initialization data
- * \param ucs_user_ptr User reference that needs to be passed in every callback function
- */
-void Tm_Ctor(CTimerManagement *self, CScheduler *scd, const Tm_InitData_t *init_ptr, void * ucs_user_ptr)
-{
- MISC_MEM_SET(self, 0, sizeof(*self));
- self->ucs_user_ptr = ucs_user_ptr;
- /* Initialize subjects and add observers */
- Ssub_Ctor(&self->get_tick_count_subject, self->ucs_user_ptr);
- (void)Ssub_AddObserver(&self->get_tick_count_subject,
- init_ptr->get_tick_count_obs_ptr);
- if(init_ptr->set_application_timer_obs_ptr != NULL)
- {
- self->delayed_tm_service_enabled = true;
- Ssub_Ctor(&self->set_application_timer_subject, self->ucs_user_ptr);
- (void)Ssub_AddObserver(&self->set_application_timer_subject,
- init_ptr->set_application_timer_obs_ptr);
- }
- /* Initialize timer management service */
- Srv_Ctor(&self->tm_srv, TM_SRV_PRIO, self, &Tm_Service);
- /* Add timer management service to scheduler */
- (void)Scd_AddService(scd, &self->tm_srv);
-}
-
-/*! \brief Service function of the timer management.
- * \param self Instance pointer
- */
-static void Tm_Service(void *self)
-{
- CTimerManagement *self_ = (CTimerManagement *)self;
- Srv_Event_t event_mask;
-
- Srv_GetEvent(&self_->tm_srv, &event_mask);
-
- if(TM_EVENT_UPDATE_TIMERS == (event_mask & TM_EVENT_UPDATE_TIMERS)) /* Is event pending? */
- {
- Srv_ClearEvent(&self_->tm_srv, TM_EVENT_UPDATE_TIMERS);
- Tm_UpdateTimers(self_);
- }
-}
-
-/*! \brief If event TM_EVENT_UPDATE_TIMERS is set this function is called. Handles the update
- * of the timer list. If a timer has expired the corresponding callback function is
- * executed. If the expired timer is a periodic timer, the timer will be set again.
- * \param self Instance pointer
- */
-static void Tm_UpdateTimers(CTimerManagement *self)
-{
- uint16_t current_tick_count;
- Ssub_Notify(&self->get_tick_count_subject, &current_tick_count, false);
-
- if(self->timer_list.head != NULL) /* At least one timer is running? */
- {
- bool continue_loop = true;
- /* Calculate time difference between the current and the last TM service run */
- uint16_t tick_count_diff = (uint16_t)(current_tick_count - self->last_tick_count);
- /* Save current tick count for next service run */
- self->last_tick_count = current_tick_count;
-
- /* Loop while timer list is not empty */
- while((self->timer_list.head != NULL) && (continue_loop!= false))
- {
- /* Is not first timer in list elapsed yet? */
- if(tick_count_diff <= ((CTimer *)self->timer_list.head->data_ptr)->delta)
- {
- /* Update delta of first timer in list */
- ((CTimer *)self->timer_list.head->data_ptr)->delta -= tick_count_diff;
- tick_count_diff = 0U;
- }
- else /* At least first timer in list elapsed */
- {
- /* Update tick count difference for next timer in list */
- tick_count_diff -= ((CTimer *)self->timer_list.head->data_ptr)->delta;
- /* First timer elapsed */
- ((CTimer *)self->timer_list.head->data_ptr)->delta = 0U;
- }
-
- /* First timer in list elapsed? */
- if(0U == ((CTimer *)self->timer_list.head->data_ptr)->delta)
- {
- /* Handle elapsed timer */
- continue_loop = Tm_HandleElapsedTimer(self);
- }
- else /* No elapsed timer in list. */
- {
- /* First timer in list updated! Set trigger to inform application (see
- Tm_CheckForNextService()) and stop TM service. */
- self->set_service_timer = true;
- continue_loop = false;
- }
- }
- }
-}
-
-/*! \brief This function is called if the first timer in list is elapsed. The timer handler
- * callback function is invoked. If the timer is a periodic timer it is wound up again.
- * \param self Instance pointer
- * \return \c true if the next timer must be check.
- * \return \c false if the wound up timer (periodic timer) is new head of timer list
- */
-static bool Tm_HandleElapsedTimer(CTimerManagement *self)
-{
- bool ret_val = true;
-
- CDlNode *node = self->timer_list.head;
- /* Reset flag to be able to check if timer object has changed within handler
- callback function */
- ((CTimer *)node->data_ptr)->changed = false;
- /* Call timer handler callback function */
- ((CTimer *)node->data_ptr)->handler_fptr(((CTimer *)node->data_ptr)->args_ptr);
-
- /* Timer object hasn't changed within handler callback function? */
- if(false == ((CTimer *)node->data_ptr)->changed)
- {
- /* Remove current timer from list */
- (void)Dl_Remove(&self->timer_list, node);
- /* Mark timer as unused */
- ((CTimer *)node->data_ptr)->in_use = false;
- /* Is current timer a periodic timer? */
- if(((CTimer *)node->data_ptr)->period > 0U)
- {
- /* Reload current timer */
- Tm_SetTimerInternal(self,
- ((CTimer *)node->data_ptr),
- ((CTimer *)node->data_ptr)->handler_fptr,
- ((CTimer *)node->data_ptr)->args_ptr,
- ((CTimer *)node->data_ptr)->period,
- ((CTimer *)node->data_ptr)->period);
-
- if(node == self->timer_list.head) /* Is current timer new head of list? */
- {
- /* Set trigger to inform application (see Tm_CheckForNextService()) and
- stop TM service. */
- self->set_service_timer = true;
- ret_val = false;
- }
- }
- }
-
- return ret_val;
-}
-
-/*! \brief Calls an application callback function to inform the application that the UCS must be
- * serviced not later than the passed time period. If the timer list is empty a possible
- * running application timer will be stopped. This function is called at the end of
- * Ucs_Service().
- * \param self Instance pointer
- */
-void Tm_CheckForNextService(CTimerManagement *self)
-{
- if(self->delayed_tm_service_enabled != false)
- {
- uint16_t current_tick_count;
- Ssub_Notify(&self->get_tick_count_subject, &current_tick_count, false);
- /* Has head of timer list changed? */
- if(self->set_service_timer != false)
- {
- uint16_t new_time;
- uint16_t diff = current_tick_count - self->last_tick_count;
- self->set_service_timer = false;
- if (self->timer_list.head != NULL)
- {
- /* Timer expired since last TM service? */
- if(diff >= ((CTimer *)self->timer_list.head->data_ptr)->delta)
- {
- new_time = 1U; /* Return minimum value */
- }
- else
- {
- /* Calculate new timeout */
- new_time = (uint16_t)(((CTimer *)self->timer_list.head->data_ptr)->delta - diff);
- }
- /* Inform the application that the UCS must be serviced not later than the passed
- time period. */
- Ssub_Notify(&self->set_application_timer_subject, &new_time, false);
- }
- }
- }
- else
- {
- Tm_TriggerService(self); /* Application timer not implemented -> Retrigger TM */
- }
-}
-
-/*! \brief Helper function to set the TM service event.
- * \details This function is used by the application to trigger a service call of the Timer
- * Management if the application timer has expired.
- * \param self Instance pointer
- */
-void Tm_TriggerService(CTimerManagement *self)
-{
- if(self->timer_list.head != NULL) /* At least one timer is running? */
- {
- Srv_SetEvent(&self->tm_srv, TM_EVENT_UPDATE_TIMERS);
- }
-}
-
-/*! \brief Helper function to stop the TM service.
- * \param self Instance pointer
- */
-void Tm_StopService(CTimerManagement *self)
-{
- uint16_t new_time = 0U;
-
- /* Clear probable running application timer */
- Ssub_Notify(&self->set_application_timer_subject, &new_time, false);
-
- /* Reset the service timer. Not necessary ? */
- self->set_service_timer = false;
-
- /* Clear the timer head queue to prevent any event to be set */
- self->timer_list.head = NULL;
-}
-
-/*! \brief Creates a new timer. The timer expires at the specified elapse time and then after
- * every specified period. When the timer expires the specified callback function is
- * called.
- * \param self Instance pointer
- * \param timer_ptr Reference to the timer object
- * \param handler_fptr Callback function which is called when the timer expires
- * \param args_ptr Reference to an optional parameter which is passed to the specified
- * callback function
- * \param elapse The elapse value before the timer expires for the first time, in
- * milliseconds
- * \param period The period of the timer, in milliseconds. If this parameter is zero, the
- * timer is signaled once. If the parameter is greater than zero, the timer
- * is periodic.
- */
-void Tm_SetTimer(CTimerManagement *self,
- CTimer *timer_ptr,
- Tm_Handler_t handler_fptr,
- void *args_ptr,
- uint16_t elapse,
- uint16_t period)
-{
- (void)Tm_ClearTimer(self, timer_ptr); /* Clear timer if running */
- /* Call the internal method to set the new timer (-> does not trigger TM service!) */
- Tm_SetTimerInternal(self, timer_ptr, handler_fptr, args_ptr, elapse, period);
- Tm_TriggerService(self); /* New timer added -> trigger timer list update */
-}
-
-/*! \brief This function contains the internal part when adding a new timer. The function is
- * called within Tm_SetTimer() and within Tm_UpdateTimers().
- * \param self Instance pointer
- * \param timer_ptr Reference to the timer object
- * \param handler_fptr Callback function which is called when the timer expires
- * \param args_ptr Reference to an optional parameter which is passed to the specified
- * callback function
- * \param elapse The elapse value before the timer expires for the first time, in
- * milliseconds
- * \param period The period of the timer, in milliseconds. If this parameter is zero, the
- * timer is signaled once. If the parameter is greater than zero, the timer
- * is periodic.
- */
-static void Tm_SetTimerInternal(CTimerManagement *self,
- CTimer *timer_ptr,
- Tm_Handler_t handler_fptr,
- void *args_ptr,
- uint16_t elapse,
- uint16_t period)
-{
- uint16_t current_tick_count;
- Ssub_Notify(&self->get_tick_count_subject, &current_tick_count, false);
-
- /* Save timer specific values */
- timer_ptr->changed = true; /* Flag is needed by Tm_UpdateTimers() */
- timer_ptr->in_use = true;
- timer_ptr->handler_fptr = handler_fptr;
- timer_ptr->args_ptr = args_ptr;
- timer_ptr->elapse = elapse;
- timer_ptr->period = period;
- timer_ptr->delta = elapse;
-
- /* Create back link to be able to point from node to timer object */
- timer_ptr->node.data_ptr = (void *)timer_ptr;
-
- if(self->timer_list.head == NULL) /* Is timer list empty? */
- {
- Dl_InsertHead(&self->timer_list, &timer_ptr->node); /* Add first timer to list */
- /* Save current tick count */
- Ssub_Notify(&self->get_tick_count_subject, &self->last_tick_count, false);
- }
- else /* Timer list is not empty */
- {
- CDlNode *result_ptr = NULL;
-
- /* Set delta value in relation to last saved tick count (last TM service) */
- timer_ptr->delta += (uint16_t)(current_tick_count - self->last_tick_count);
-
- /* Search slot where new timer must be inserted. Update delta of new timer
- and delta of the following timer in the list. */
- result_ptr = Dl_Foreach(&self->timer_list, &Tm_UpdateTimersAdd, (void *)timer_ptr);
-
- if(result_ptr != NULL) /* Slot found? */
- {
- /* Insert new timer at found position */
- Dl_InsertBefore(&self->timer_list, result_ptr, &timer_ptr->node);
- }
- else /* No slot found -> Insert as last node */
- {
- /* Add new timer to end of list */
- Dl_InsertTail(&self->timer_list, &timer_ptr->node);
- }
- }
-}
-
-/*! \brief Removes the specified timer from the timer list.
- * \param self Instance pointer
- * \param timer_ptr Reference to the timer object
- * \attention Make sure that for a timer object Tm_SetTimer() is called before Tm_ClearTimer()
- * is called!
- */
-void Tm_ClearTimer(CTimerManagement *self, CTimer *timer_ptr)
-{
- if(timer_ptr->in_use != false) /* Is timer currently in use? */
- {
- timer_ptr->changed = true; /* Flag is needed by Tm_UpdateTimers() */
-
- if(timer_ptr->node.next != NULL) /* Has deleted timer a follower? */
- {
- /* Adjust delta of following timer */
- ((CTimer *)timer_ptr->node.next->data_ptr)->delta += timer_ptr->delta;
- }
-
- (void)Dl_Remove(&self->timer_list, &timer_ptr->node);
- timer_ptr->in_use = false;
-
- Tm_TriggerService(self); /* Timer removed -> trigger timer list update */
- }
-}
-
-/*! \brief Used by Tm_SetTimer() to find the slot where the new timer must be inserted.
- * \param c_timer_ptr Reference to current timer processed by foreach loop
- * \param n_timer_ptr Reference to new timer
- * \return \c true: Slot found, stop foreach loop
- * \return \c false: Slot not found, continue foreach loop
- */
-static bool Tm_UpdateTimersAdd(void *c_timer_ptr, void *n_timer_ptr)
-{
- CTimer *current_timer_ptr = (CTimer *)c_timer_ptr;
- CTimer *new_timer_ptr = (CTimer *)n_timer_ptr;
- bool ret_val;
-
- /* Is current timer lesser than new timer? */
- if(current_timer_ptr->delta <= new_timer_ptr->delta)
- {
- /* Update delta of new timer and continue foreach loop */
- new_timer_ptr->delta -= current_timer_ptr->delta;
- ret_val = false;
- }
- else /* Slot found! */
- {
- /* Correct delta of current timer and stop foreach loop */
- current_timer_ptr->delta -= new_timer_ptr->delta;
- ret_val = true;
- }
-
- return ret_val;
-}
-
-
-/*------------------------------------------------------------------------------------------------*/
-/* Implementation of class CTimer */
-/*------------------------------------------------------------------------------------------------*/
-/*! \brief Constructor of the Timer class.
- * \param self Instance pointer
- */
-void T_Ctor(CTimer *self)
-{
- MISC_MEM_SET(self, 0, sizeof(*self));
-}
-
-/*! \brief Returns the status of the given timer.
- * \param self Instance pointer
- * \return \c true if the timer is currently in use
- * \return \c false if the timer is not currently in use
- */
-bool T_IsTimerInUse(CTimer *self)
-{
- return self->in_use;
-}
-
-/*!
- * @}
- * \endcond
- */
-
-/*------------------------------------------------------------------------------------------------*/
-/* End of file */
-/*------------------------------------------------------------------------------------------------*/
-
1024' href='#n1024'>1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456