TICKS_PER_SECOND limits
Posted: Tue Feb 08, 2011 1:14 pm
The version of the bsp.c for the Coldfire MCF5272 has the following lines:
#if (TICKS_PER_SECOND >200)
#error TICKS_PER_SECOND too fast
#endif
#if (TICKS_PER_SECOND <10)
#error TICKS_PER_SECOND too slow
#endif
What I would like to know is what was used to determine these limits. In particular, I would like to know if the system might in fact work well with a time resolution of 2 milliseconds rather than 5 milliseconds.
#if (TICKS_PER_SECOND >200)
#error TICKS_PER_SECOND too fast
#endif
#if (TICKS_PER_SECOND <10)
#error TICKS_PER_SECOND too slow
#endif
What I would like to know is what was used to determine these limits. In particular, I would like to know if the system might in fact work well with a time resolution of 2 milliseconds rather than 5 milliseconds.