for Release Version 1.097

This commit is contained in:
phdlee
2018-08-06 13:59:55 +09:00
parent 7c1ee29500
commit e79dbdbbe7
4 changed files with 47 additions and 41 deletions

View File

@@ -1255,9 +1255,15 @@ void setup()
initSettings();
initPorts();
#ifndef USE_SW_SERIAL
#ifdef USE_SW_SERIAL
// if (userCallsignLength > 0 && ((userCallsignLength & 0x80) == 0x80))
// {
userCallsignLength = userCallsignLength & 0x7F;
// }
#else
//for Chracter LCD
if (userCallsignLength > 0 && ((userCallsignLength & 0x80) == 0x80)) {
if (userCallsignLength > 0 && ((userCallsignLength & 0x80) == 0x80))
{
userCallsignLength = userCallsignLength & 0x7F;
DisplayCallsign(userCallsignLength);
}