Skip to content

Commit

Permalink
Merge pull request emsec#25 from mbaschnitzi/bugfix/version-oneline
Browse files Browse the repository at this point in the history
Remove newlines from VERSION command. Fix for emsec#16
  • Loading branch information
geo-rg authored Oct 24, 2016
2 parents 2df383b + e0529dd commit 8c3d2c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/Chameleon-Mini/Terminal/Commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extern const PROGMEM CommandEntryType CommandTable[];
CommandStatusIdType CommandGetVersion(char* OutParam)
{
snprintf_P(OutParam, TERMINAL_BUFFER_SIZE, PSTR(
"ChameleonMini RevG %S using LUFA %S compiled with AVR-GCC %S\r\nBased on the open-source NFC tool ChameleonMini\r\nhttps://github.com/emsec/ChameleonMini\r\ncommit %S"
"ChameleonMini RevG %S using LUFA %S compiled with AVR-GCC %S. Based on the open-source NFC tool ChameleonMini. https://github.com/emsec/ChameleonMini commit %S"
), PSTR(CHAMELEON_MINI_VERSION_STRING), PSTR(LUFA_VERSION_STRING), PSTR(__VERSION__), PSTR(COMMIT_ID)
);

Expand Down

0 comments on commit 8c3d2c3

Please sign in to comment.