Closed ricochet1k closed 2 months ago
Fixes this warning:
uCNC/src/hal/mcus/lpc176x/mcu_lpc176x.c: In function 'mcu_freq_to_clocks': uCNC/src/hal/mcus/lpc176x/mcu_lpc176x.c:755:17: warning: value computed is not used [-Wunused-value] 755 | *prescaller++; | ^~~~~~~~~~~~~
since *(prescaller++) is definitely not right.
*(prescaller++)
Fixes this warning:
since
*(prescaller++)
is definitely not right.