implemented gtimerDeinit()
This commit is contained in:
parent
7825434591
commit
d2de6c3517
3 changed files with 21 additions and 6 deletions
|
@ -68,13 +68,22 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Initialise a timer.
|
* @brief Initialise a timer
|
||||||
*
|
*
|
||||||
* @param[in] pt pointer to a GTimer structure
|
* @param[in] pt Pointer to a GTimer structure
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
void gtimerInit(GTimer *pt);
|
void gtimerInit(GTimer* pt);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Deinitialise a timer
|
||||||
|
*
|
||||||
|
* @param[in] pt Pointer to a GTimer structure
|
||||||
|
*
|
||||||
|
* @api
|
||||||
|
*/
|
||||||
|
void gtimerDeinit(GTimer* pt);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set a timer going or alter its properties if it is already going.
|
* @brief Set a timer going or alter its properties if it is already going.
|
||||||
|
|
|
@ -254,9 +254,9 @@ void _gadcDeinit(void)
|
||||||
// gadc_lld_deinit();
|
// gadc_lld_deinit();
|
||||||
gfxSemDestroy(&gadcsem);
|
gfxSemDestroy(&gadcsem);
|
||||||
gfxMutexDestroy(&gadcmutex);
|
gfxMutexDestroy(&gadcmutex);
|
||||||
//gtimerDeinit(&LowSpeedGTimer);
|
gtimerDeinit(&LowSpeedGTimer);
|
||||||
#if GFX_USE_GEVENT
|
#if GFX_USE_GEVENT
|
||||||
//gtimerDeinit(&HighSpeedGTimer);
|
gtimerDeinit(&HighSpeedGTimer);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -130,10 +130,16 @@ void _gtimerDeinit(void)
|
||||||
gfxMutexDestroy(&mutex);
|
gfxMutexDestroy(&mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
void gtimerInit(GTimer *pt) {
|
void gtimerInit(GTimer* pt)
|
||||||
|
{
|
||||||
pt->flags = 0;
|
pt->flags = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gtimerDeinit(GTimer* pt)
|
||||||
|
{
|
||||||
|
(void)pt;
|
||||||
|
}
|
||||||
|
|
||||||
void gtimerStart(GTimer *pt, GTimerFunction fn, void *param, bool_t periodic, delaytime_t millisec) {
|
void gtimerStart(GTimer *pt, GTimerFunction fn, void *param, bool_t periodic, delaytime_t millisec) {
|
||||||
gfxMutexEnter(&mutex);
|
gfxMutexEnter(&mutex);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue