Skip to content

Commit c0abb4b

Browse files
committed
Release 1.5.
2 parents e51002a + da0a33e commit c0abb4b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+7319
-1862
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,5 @@ $RECYCLE.BIN/
105105

106106
# Windows shortcuts
107107
*.lnk
108+
/use_this_sdk
109+
*.dSYM

99-direwolf-cmedia.rules

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Normally, all of /dev/hidraw* are accessible only by root.
2+
#
3+
# $ ls -l /dev/hidraw*
4+
# crw------- 1 root root 247, 0 Sep 24 09:40 /dev/hidraw0
5+
#
6+
# An ordinary user, trying to acccess it will be denied.
7+
#
8+
# Unnecessarily running applications as root is generally a bad idea because it makes it too easy
9+
# to accidentally trash your system. We need to relax the restrictions so ordinary users can use these devices.
10+
#
11+
# If all went well with installation, the /etc/udev/rules.d directory should contain a file called
12+
# 99-direwolf-cmedia.rules containing:
13+
#
14+
15+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0d8c", GROUP="audio", MODE="0660"
16+
17+
#
18+
# I used the "audio" group, mimicking the permissions on the sound side of the device.
19+
#
20+
# $ ls -l /dev/snd/pcm*
21+
# crw-rw----+ 1 root audio 116, 16 Sep 24 09:40 /dev/snd/pcmC0D0p
22+
# crw-rw----+ 1 root audio 116, 17 Sep 24 09:40 /dev/snd/pcmC0D1p
23+
#
24+
# You should see something similar to this where someone in the "audio" group has read-write access.
25+
#
26+
# $ ls -l /dev/hidraw*
27+
# crw-rw---- 1 root audio 247, 0 Oct 6 19:24 /dev/hidraw0
28+
#
29+
# Read the User Guide and run the "cm108" application for more information.
30+
#

CHANGES.md

+58
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,64 @@
22
# Revision History #
33

44

5+
## Version 1.5 -- September 2018 ##
6+
7+
8+
### New Features: ###
9+
10+
- PTT using GPIO pin of CM108/CM119 (e.g. DMK URI, RB-USB RIM), Linux only.
11+
12+
- More efficient error recovery for AX.25 connected mode. Better generation and processing of REJ and SREJ to reduce unnecessary duplicate "**I**" frames.
13+
14+
- New configuration option, "**V20**", for listing stations known to not understand AX.25 v2.2. This will speed up connection by going right to SABM and not trying SABME first and failing.
15+
16+
- New "**NOXID**" configuration file option to avoid sending XID command to listed station(s). If other end is a partial v2.2 implementation, which recognizes SABME, but not XID, we would waste a lot of time resending XID many times before giving up. This is less drastic than the "**V20**" option which doesn't even attempt to use v2.2 with listed station(s).
17+
18+
- New application "**kissutil**" for troubleshooting a KISS TNC or interfacing to an application via files.
19+
20+
- KISS "Set Hardware" command to report transmit queue length.
21+
22+
- TCP KISS can now handle multiple concurrent applications.
23+
24+
- Linux can use serial port for KISS in addition to a pseudo terminal.
25+
26+
- decode_aprs utility can now accept KISS frames and AX.25 frames as series of two digit hexadecimal numbers.
27+
28+
- Full Duplex operation. (Put "FULLDUP ON" in channel section of configuration file.)
29+
30+
- Time slots for beaconing.
31+
32+
- Allow single log file with fixed name rather than starting a new one each day.
33+
34+
35+
36+
### Bugs Fixed: ###
37+
38+
- Possible crash when CDIGIPEAT did not include the optional alias.
39+
40+
- PACLEN configuration item no longer restricts length of received frames.
41+
42+
- Strange failures when trying to use multiple KISS client applications over TCP. Only Linux was affected.
43+
44+
- Under certain conditions, outgoing connected mode data would get stuck in a queue and not be transmitted. This could happen if client application sends a burst of data larger than the "window" size (MAXFRAME or EMAXFRAME option).
45+
46+
47+
- Little typographical / spelling errors in messages.
48+
49+
50+
### Documentation: ###
51+
52+
53+
- New document ***Bluetooth-KISS-TNC.pdf*** explaining how to use KISS over Bluetooth.
54+
55+
- Updates describing cheap SDR frequency inaccuracy and how to compensate for it.
56+
57+
### Notes: ###
58+
59+
Windows binary distribution now uses gcc (MinGW) version 6.3.0.
60+
61+
----------
62+
563
## Version 1.4 -- April 2017 ##
664

765

0 commit comments

Comments
 (0)