Frame size increased to ethernet-compliant MTU

This commit is contained in:
Mark Qvist 2019-01-07 12:09:41 +01:00
parent 79aa4620ba
commit 3f5af2b26b
3 changed files with 4 additions and 11 deletions

View file

@ -110,7 +110,7 @@ void kiss_serialCallback(uint8_t sbyte) {
} else if (IN_FRAME && frame_len < AX25_MAX_FRAME_LEN) {
// Have a look at the command byte first
if (frame_len == 0 && command == CMD_UNKNOWN) {
// MicroModem supports only one HDLC port, so we
// OpenModem supports only one HDLC port, so we
// strip off the port nibble of the command byte
sbyte = sbyte & 0x0F;
command = sbyte;