diff --git a/src/apex/kiss/constants.py b/src/apex/kiss/constants.py index 35e4fc5b4758860850e117504d41d234372792ed..df79ad02cd07af7cfd7a99bb9b6c564e7d968708 100644 --- a/src/apex/kiss/constants.py +++ b/src/apex/kiss/constants.py @@ -59,8 +59,28 @@ DEFAULT_KISS_CONFIG_VALUES = { # This command will exit KISS mode MODE_END = [192, 255, 192, 13] -# This will start kiss on a W8DED or LINK>.<NORD firmware + +# This will start kiss on a WA8DED or LINK>.<NORD firmware MODE_INIT_W8DED = [13, 27, 64, 75, 13] MODE_INIT_LINKNORD = MODE_INIT_W8DED -# This will work for any Kenwood D710 -MODE_INIT_KENWOOD_D710 = [72, 66, 32, 49, 50, 48, 48, 13, 75, 73, 83, 83, 32, 79, 78, 13, 82, 69, 83, 84, 65, 82, 84, 13] + +# Kenwood D710 +MODE_INIT_KENWOOD_D710 = [72, 66, 32, 49, 50, 48, 48, 13, # HB 1200 + 75, 73, 83, 83, 32, 79, 78, 13, # KISS ON + 82, 69, 83, 84, 65, 82, 84, 13] # RESTART + +# Kantronics TNCs +MODE_INIT_KANTRONICS = [13, # Blank + 73, 78, 84, 32, 75, 73, 83, 83, 13, # INT KISS + 82, 69, 83, 84, 65, 82, 84, 13] # RESTART + +# TINY2 TNC (TNC2) +MODE_INIT_TINY2 = [13, # Blank + 75, 73, 83, 83, 32, 79, 78, 13, # KISS ON + 82, 69, 83, 84, 65, 82, 84, 13] # RESTART + +# Advanced Electronic Application (later Timewave) PK-232 TNC +MODE_INIT_PK232 = [42, 126, 13, # *~ + 69, 88, 80, 69, 82, 84, 32, 79, 78, 13, # EXPERT ON + 75, 73, 83, 83, 32, 79, 78, 13, # KISS ON + 82, 69, 83, 84, 65, 82, 84, 13] # RESTART