a-wilhelm
a-wilhelm
Timer clock is set to 100KHz, but when computing the timer period the value 1e6 is used: https://github.com/STMicroelectronics/STM32CubeU5/blob/0eedae3d2a7997a2b5fbfdb57f54c7201e0827c8/Drivers/STM32U5xx_HAL_Driver/Src/stm32u5xx_hal_timebase_tim_template.c#L104-L110 resulting in the tick rate set to 10ms, not 1ms. Should be...
In HAL_InitTick() https://github.com/STMicroelectronics/STM32CubeU5/blob/0eedae3d2a7997a2b5fbfdb57f54c7201e0827c8/Drivers/STM32U5xx_HAL_Driver/Src/stm32u5xx_hal_timebase_tim_template.c#L114-L140 the initialization sequence is incorrect: - when using callbacks, the registration must be prior to starting the timer - the interrupt should not be enabled if there...
I've found that adding `emacs-lisp-compilation-mode` to `popper-reference-buffers` can cause elisp byte compilation to fail. When popper-mode is enabled `byte-compile-file` will report warnings at incorrect line numbers and will often fail...