machine/stm32f103xx: prevent time.Sleep() issues by preventing sleeping for less than 200us, which is the current effictive minimum due to prescaler settings.
Signed-off-by: Ron Evans <ron@hybridgroup.com>
Этот коммит содержится в:
родитель
076699add8
коммит
368abeeb9a
1 изменённых файлов: 8 добавлений и 2 удалений
|
@ -160,12 +160,18 @@ func timerSleep(ticks uint32) {
|
||||||
|
|
||||||
// TODO: support smaller or larger scales (autoscaling) based
|
// TODO: support smaller or larger scales (autoscaling) based
|
||||||
// on the length of sleep time requested.
|
// on the length of sleep time requested.
|
||||||
// The current scaling only supports a range of 100 usec to 6553 msec.
|
// The current scaling only supports a range of 200 usec to 6553 msec.
|
||||||
|
|
||||||
// prescale counter down from 72mhz to 10khz aka 0.1 ms frequency.
|
// prescale counter down from 72mhz to 10khz aka 0.1 ms frequency.
|
||||||
stm32.TIM3.PSC.Set(machine.CPU_FREQUENCY/10000 - 1) // 7199
|
stm32.TIM3.PSC.Set(machine.CPU_FREQUENCY/10000 - 1) // 7199
|
||||||
|
|
||||||
// set duty aka duration
|
// Set duty aka duration.
|
||||||
|
// STM32 dividers use n-1, i.e. n counts from 0 to n-1.
|
||||||
|
// As a result, with these prescaler settings,
|
||||||
|
// the minimum allowed duration is 200 microseconds.
|
||||||
|
if ticks < 200 {
|
||||||
|
ticks = 200
|
||||||
|
}
|
||||||
stm32.TIM3.ARR.Set(ticks/100 - 1) // convert from microseconds to 0.1 ms
|
stm32.TIM3.ARR.Set(ticks/100 - 1) // convert from microseconds to 0.1 ms
|
||||||
|
|
||||||
// Enable the hardware interrupt.
|
// Enable the hardware interrupt.
|
||||||
|
|
Загрузка…
Создание таблицы
Сослаться в новой задаче