mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-15 02:36:19 +00:00
⚡️ More SCURVE cycles on unoptimized cortex-m0 (#24955)
This commit is contained in:
parent
89334caa52
commit
f3108e87f1
1 changed files with 5 additions and 1 deletions
|
@ -87,7 +87,11 @@
|
|||
|
||||
// S curve interpolation adds 40 cycles
|
||||
#if ENABLED(S_CURVE_ACCELERATION)
|
||||
#define ISR_S_CURVE_CYCLES 40UL
|
||||
#ifdef STM32G0B1xx
|
||||
#define ISR_S_CURVE_CYCLES 500UL
|
||||
#else
|
||||
#define ISR_S_CURVE_CYCLES 40UL
|
||||
#endif
|
||||
#else
|
||||
#define ISR_S_CURVE_CYCLES 0UL
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue