Skip to content

Commit

Permalink
fixed $OK $GI bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lincomatic committed Nov 23, 2021
1 parent 9cfd328 commit a5db0a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions firmware/open_evse/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Change Log

2021119 SCL V7.1.6
- fixed bug - RAPI $GI was implemented as $SI
- fixed bug, $GI was returning $OK $GI xxx

2021119 SCL V7.1.5
- added RAPI $GI command to get AVR serial number. enable with MCU_ID_LEN
Expand Down
2 changes: 1 addition & 1 deletion firmware/open_evse/rapi_proc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ int EvseRapiProcessor::processCmd()
{
uint8_t mcuid[MCU_ID_LEN];
getMcuId(mcuid);
char *s = buffer + strlen(buffer);
char *s = buffer;
*(s++) = ' ';
for (int i=0;i < 6;i++) {
*(s++) = mcuid[i];
Expand Down

0 comments on commit a5db0a4

Please sign in to comment.