Skip to content

Commit

Permalink
update from devel 5.2.60
Browse files Browse the repository at this point in the history
update from devel 5.2.60
  • Loading branch information
Ash-4 committed May 24, 2024
2 parents e878f9a + 33a4cdb commit 0babe28
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
1 change: 0 additions & 1 deletion EXRAIL2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ LookList* RMFT2::LookListLoader(OPCODE op1, OPCODE op2, OPCODE op3) {
case OPCODE_AT:
case OPCODE_ATTIMEOUT2:
case OPCODE_AFTER:
case OPCODE_AFTEROVERLOAD:
case OPCODE_IF:
case OPCODE_IFNOT: {
int16_t pin = (int16_t)operand;
Expand Down
2 changes: 1 addition & 1 deletion GITHUB_SHA.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define GITHUB_SHA "devel-stm32ECa-202405230400Z"
#define GITHUB_SHA "devel-stm32ECa-202405232319Z"
4 changes: 4 additions & 0 deletions MotorDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,10 @@ void MotorDriver::checkPowerOverload(bool useProgLimit, byte trackno) {
}
throttleInrush(false);
setPower(POWERMODE::ON);
break;
}
if (goodtime > POWER_SAMPLE_ALERT_GOOD/2) {
throttleInrush(false);
}
break;
}
Expand Down
5 changes: 4 additions & 1 deletion version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

#include "StringFormatter.h"

#define VERSION "5.3.11"
#define VERSION "5.3.12"
// 5.2.60 - Bugfix: Opcode AFTEROVERLOAD does not have an argument that is a pin and needs to be initialized
// - Remove inrush throttle after half good time so that we go to mode overload if problem persists
// 5.3.11
// 5.2.59 - STM32 bugfix correct Serial1 definition for Nucleo-F401RE
// - STM32 add support for ARDUINO_NUCLEO_F4X9ZI type to span F429/F439 in upcoming STM32duino release v2.8 as a result of our PR
// 5.2.58 - EXRAIL ALIAS allows named pins
Expand Down

0 comments on commit 0babe28

Please sign in to comment.