You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my application the G-Code "G4 P3" did not work correctly.
I think the problem is caused by the _delay_ms function in main.c.
If I change line 196 from
SysTick->LOAD = (u32)72000000 / 8000; // Loading time
to
SysTick->LOAD = (u32)72000000 / 8000 * x; // Loading time
everything works fine.
Best regards,
lakeroe
The text was updated successfully, but these errors were encountered:
In my application the G-Code "G4 P3" did not work correctly.
I think the problem is caused by the _delay_ms function in main.c.
If I change line 196 from
SysTick->LOAD = (u32)72000000 / 8000; // Loading time
to
SysTick->LOAD = (u32)72000000 / 8000 * x; // Loading time
everything works fine.
Best regards,
lakeroe
The text was updated successfully, but these errors were encountered: