Skip to content

Commit

Permalink
show version with decimal point
Browse files Browse the repository at this point in the history
  • Loading branch information
rnayabed committed Jun 8, 2023
1 parent 4c8b985 commit ec59ff0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ add_executable(vegadude
xmodem.h xmodem.cpp)

add_compile_definitions(
VERSION=${VERSION}
VERSION="${VERSION}"
GIT_REPOSITORY="https://github.com/rnayabed/vegadude"
LICENSE="https://github.com/rnayabed/vegadude/blob/master/LICENSE"
ARIES_XMODEM_BLOCK_SIZE=128
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ int main(int argc, char** argv)
<< "Stop bits: " << dp.stopBits << Logger::NewLine
<< "RTS CTS: " << dp.rtsCts << Logger::NewLine
<< "Bits: " << dp.bits << Logger::NewLine
<< "Baud Rate: " << dp.baudRate << Logger::NewLine
<< "Baud rate: " << dp.baudRate << Logger::NewLine
<< "Read Timeout (in milliseconds): " << serialReadTimeout << Logger::NewLine
<< "XMODEM Block Size " << xmodemBlockSize << Logger::NewLine
<< "XMODEM Max Retry: " << xmodemMaxRetry << Logger::NewLine
Expand Down

0 comments on commit ec59ff0

Please sign in to comment.