Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/E220.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,8 @@ String E220::getParity() {
return "8E1";
case 0b11:
return "8N1";
default:
return "N/A";
}
}
/**
Expand Down Expand Up @@ -363,6 +365,8 @@ int E220::getAirDataRate() {
return 38400;
case 0b111:
return 62500;
default:
return -1;


}
Expand Down Expand Up @@ -408,6 +412,8 @@ int E220::getSubPacketSize() {
return 64;
case 0b11:
return 32;
default:
return -1;
}
}

Expand Down Expand Up @@ -516,6 +522,8 @@ int E220::getPower() {
return 24;
case 0b11:
return 21;
default:
return -1;

}
}
Expand Down Expand Up @@ -714,6 +722,8 @@ int E220::getWORCycle() {
return 3500;
case 0b111:
return 4000;
default:
return -1;

}
}
Expand Down