Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
GyverLibs committed Oct 2, 2021
1 parent fb3876b commit a61ab0f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,7 @@ void loop() {
- v2.0 - оптимизация. Ядро шаговика вынесено в отдельный класс Stepper. Добавлены многоосевые планировщики траекторий
- v2.1 - добавил GyverStepper2, упрощённая и оптимизированная версия GyverStepper
- v2.1.1 - исправлена бага в GyverStepper
- v2.1.2 - совместимость Digispark

<a id="feedback"></a>
## Баги и обратная связь
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=GyverStepper
version=2.1.1
version=2.1.2
author=AlexGyver <alex@alexgyver.ru>
maintainer=AlexGyver <alex@alexgyver.ru>
sentence=Fast library for stepmotor control and multi-axis planning
Expand Down
1 change: 1 addition & 0 deletions src/GyverStepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
v2.0 - оптимизация. Ядро шаговика вынесено в отдельный класс Stepper. Добавлены многоосевые планировщики траекторий
v2.1 - добавил GyverStepper2, упрощённая и оптимизированная версия GyverStepper
v2.1.1 - исправлена бага в GyverStepper
v2.1.2 - совместимость Digispark
*/

/*
Expand Down
4 changes: 4 additions & 0 deletions src/StepperCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
#include <Arduino.h>
#include "GStypes.h"

#ifndef nullptr
#define nullptr NULL
#endif

#ifndef DRIVER_STEP_TIME
#define DRIVER_STEP_TIME 4
#endif
Expand Down

0 comments on commit a61ab0f

Please sign in to comment.