only:dead

This commit is contained in:
rusefillc 2025-03-06 20:50:52 -05:00
parent 964414d2b1
commit b697cfba58
1 changed files with 6 additions and 13 deletions

View File

@ -40,10 +40,6 @@ private:
systime_t m_period;
protected:
/**
* The target period between calls to PeriodicTask.
*/
// const float m_periodSeconds;
/**
* @brief Called before running the periodic task. Optionally override this method to set up.
@ -87,9 +83,6 @@ public:
: ThreadController<TStackSize>(name, priority)
// First compute the period in systime_t
, m_period(CH_CFG_ST_FREQUENCY / frequencyHz)
// Then compute the float period off of the integer one to
// get the ACTUAL period, which may be slightly different than requested.
// , m_periodSeconds(m_period / (float)CH_CFG_ST_FREQUENCY)
{
}