Skip to content

Commit

Permalink
overcurrent fix release D5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lincomatic committed Oct 18, 2018
1 parent 7ad301b commit 4a52ecc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions firmware/open_evse/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Change Log

D5.0.1 20181018 SCL
- fix Issue #94. Overcurrent caused lockup. Merge fixes from test1 branch

20180823 SCL
- merged PR#94: doesn't affect functionality, only to correct compile errors on minimal builds

Expand Down
1 change: 1 addition & 0 deletions firmware/open_evse/J1772EvseController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1649,6 +1649,7 @@ if (TempChkEnabled()) {
m_EvseState = EVSE_STATE_OVER_CURRENT;

m_Pilot.SetState(PILOT_STATE_P12); // Signal the EV to pause
curms = millis();
while ((millis()-curms) < 1000) { // give EV 1s to stop charging
wdt_reset();
}
Expand Down
2 changes: 1 addition & 1 deletion firmware/open_evse/open_evse.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#define setBits(flags,bits) (flags |= (bits))
#define clrBits(flags,bits) (flags &= ~(bits))

#define VERSION "D5.0.0"
#define VERSION "D5.0.1"

#include "Language_default.h" //Default language should always be included as bottom layer

Expand Down

0 comments on commit 4a52ecc

Please sign in to comment.