Skip to content

Commit de293a1

Browse files
committed
Merge remote-tracking branch 'origin/dev'
2 parents 7d3c1d1 + 2260df1 commit de293a1

File tree

153 files changed

+14238
-2704
lines changed

Some content is hidden

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

153 files changed

+14238
-2704
lines changed

.github/workflows/ci.yml

+162
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
name: 'build direwolf'
2+
3+
on:
4+
# permit to manually trigger the CI
5+
workflow_dispatch:
6+
inputs:
7+
cmake_flags:
8+
description: 'Custom CMAKE flags'
9+
required: false
10+
push:
11+
paths-ignore:
12+
- '.github/**'
13+
pull_request:
14+
paths-ignore:
15+
- '.github/**'
16+
17+
jobs:
18+
build:
19+
name: ${{ matrix.config.name }}
20+
runs-on: ${{ matrix.config.os }}
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
config:
25+
- {
26+
name: 'Windows Latest MinGW 64bit',
27+
os: windows-latest,
28+
cc: 'x86_64-w64-mingw32-gcc',
29+
cxx: 'x86_64-w64-mingw32-g++',
30+
ar: 'x86_64-w64-mingw32-ar',
31+
windres: 'x86_64-w64-mingw32-windres',
32+
arch: 'x86_64',
33+
build_type: 'Release',
34+
cmake_extra_flags: '-G "MinGW Makefiles"'
35+
}
36+
- {
37+
name: 'Windows 2019 MinGW 32bit',
38+
os: windows-2019,
39+
cc: 'i686-w64-mingw32-gcc',
40+
cxx: 'i686-w64-mingw32-g++',
41+
ar: 'i686-w64-mingw32-ar',
42+
windres: 'i686-w64-mingw32-windres',
43+
arch: 'i686',
44+
build_type: 'Release',
45+
cmake_extra_flags: '-G "MinGW Makefiles"'
46+
}
47+
- {
48+
name: 'macOS latest',
49+
os: macos-latest,
50+
cc: 'clang',
51+
cxx: 'clang++',
52+
arch: 'x86_64',
53+
build_type: 'Release',
54+
cmake_extra_flags: ''
55+
}
56+
- {
57+
name: 'Ubuntu latest Debug',
58+
os: ubuntu-latest,
59+
cc: 'gcc',
60+
cxx: 'g++',
61+
arch: 'x86_64',
62+
build_type: 'Debug',
63+
cmake_extra_flags: ''
64+
}
65+
- {
66+
name: 'Ubuntu 22.04',
67+
os: ubuntu-22.04,
68+
cc: 'gcc',
69+
cxx: 'g++',
70+
arch: 'x86_64',
71+
build_type: 'Release',
72+
cmake_extra_flags: ''
73+
}
74+
- {
75+
name: 'Ubuntu 20.04',
76+
os: ubuntu-20.04,
77+
cc: 'gcc',
78+
cxx: 'g++',
79+
arch: 'x86_64',
80+
build_type: 'Release',
81+
cmake_extra_flags: ''
82+
}
83+
84+
steps:
85+
- name: checkout
86+
uses: actions/checkout@v2
87+
with:
88+
fetch-depth: 8
89+
- name: dependency
90+
shell: bash
91+
run: |
92+
# this is not perfect but enought for now
93+
if [ "$RUNNER_OS" == "Linux" ]; then
94+
sudo apt-get update
95+
sudo apt-get install libasound2-dev libudev-dev libhamlib-dev gpsd
96+
elif [ "$RUNNER_OS" == "macOS" ]; then
97+
# just to simplify I use homebrew but
98+
# we can use macports (latest direwolf is already available as port)
99+
brew install portaudio hamlib gpsd
100+
elif [ "$RUNNER_OS" == "Windows" ]; then
101+
# add the folder to PATH
102+
echo "C:\msys64\mingw32\bin" >> $GITHUB_PATH
103+
fi
104+
- name: create build environment
105+
run: |
106+
cmake -E make_directory ${{github.workspace}}/build
107+
- name: configure
108+
shell: bash
109+
working-directory: ${{github.workspace}}/build
110+
run: |
111+
if [ "$RUNNER_OS" == "Windows" ]; then
112+
export CC=${{ matrix.config.cc }}
113+
export CXX=${{ matrix.config.cxx }}
114+
export AR=${{ matrix.config.ar }}
115+
export WINDRES=${{ matrix.config.windres }}
116+
fi
117+
cmake $GITHUB_WORKSPACE \
118+
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
119+
-DCMAKE_C_COMPILER=${{ matrix.config.cc }} \
120+
-DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} \
121+
-DCMAKE_CXX_FLAGS="-Werror" -DUNITTEST=1 \
122+
${{ matrix.config.cmake_extra_flags }} \
123+
${{ github.event.inputs.cmake_flags }}
124+
- name: build
125+
shell: bash
126+
working-directory: ${{github.workspace}}/build
127+
run: |
128+
if [ "$RUNNER_OS" == "Windows" ]; then
129+
export CC=${{ matrix.config.cc }}
130+
export CXX=${{ matrix.config.cxx }}
131+
export AR=${{ matrix.config.ar }}
132+
export WINDRES=${{ matrix.config.windres }}
133+
fi
134+
cmake --build . --config ${{ matrix.config.build_type }} \
135+
${{ github.event.inputs.cmake_flags }}
136+
- name: test
137+
continue-on-error: true
138+
shell: bash
139+
working-directory: ${{github.workspace}}/build
140+
run: |
141+
ctest -C ${{ matrix.config.build_type }} \
142+
--parallel 2 --output-on-failure \
143+
${{ github.event.inputs.cmake_flags }}
144+
- name: package
145+
shell: bash
146+
working-directory: ${{github.workspace}}/build
147+
run: |
148+
if [ "$RUNNER_OS" == "Windows" ] || [ "$RUNNER_OS" == "macOS" ]; then
149+
make package
150+
fi
151+
- name: archive binary
152+
uses: actions/upload-artifact@v2
153+
with:
154+
name: direwolf_${{ matrix.config.os }}_${{ matrix.config.arch }}_${{ github.sha }}
155+
path: |
156+
${{github.workspace}}/build/direwolf-*.zip
157+
${{github.workspace}}/build/direwolf.conf
158+
${{github.workspace}}/build/src/*
159+
${{github.workspace}}/build/CMakeCache.txt
160+
!${{github.workspace}}/build/src/cmake_install.cmake
161+
!${{github.workspace}}/build/src/CMakeFiles
162+
!${{github.workspace}}/build/src/Makefile

CHANGES.md

+62-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,69 @@
22
# Revision History #
33

44

5-
## Version 1.6 -- October 2020 ##
5+
## Version 1.7 -- October 2023 ##
6+
7+
8+
### New Documentation: ###
9+
10+
Additional documentation location to slow down growth of main repository. [https://github.com/wb2osz/direwolf-doc](https://github.com/wb2osz/direwolf-doc) . These are more oriented toward achieving a goal and understanding, as opposed to the User Guide which describes the functionality.
11+
12+
- ***APRS Digipeaters***
13+
14+
- ***Internal Packet Routing***
15+
16+
- ***Radio Interface Guide***
17+
18+
- ***Successful IGate Operation***
19+
20+
- ***Understanding APRS Packets***
21+
22+
23+
### New Features: ###
24+
25+
26+
27+
- New ICHANNEL configuration option to map a KISS client application channel to APRS-IS. Packets from APRS-IS will be presented to client applications as the specified channel. Packets sent, by client applications, to that channel will go to APRS-IS rather than a radio channel. Details in ***Internal-Packet-Routing.pdf***.
28+
29+
- New variable speed option for gen_packets. For example, "-v 5,0.1" would generate packets from 5% too slow to 5% too fast with increments of 0.1. Some implementations might have imprecise timing. Use this to test how well TNCs tolerate sloppy timing.
30+
31+
- Improved Layer 2 Protocol [(IL2P)](https://en.wikipedia.org/wiki/FX.25_Forward_Error_Correction). Compatible with Nino TNC for 1200 and 9600 bps. Use "-I 1" on command line to enable transmit for first channel. For more general case, add to config file (simplified version, see User Guide for more details):
32+
33+
> After: "CHANNEL 1" (or other channel)
34+
>
35+
> Add: "IL2PTX 1"
636
37+
- Limited support for CM108/CM119 GPIO PTT on Windows.
38+
39+
- Dire Wolf now advertises itself using DNS Service Discovery. This allows suitable APRS / Packet Radio applications to find a network KISS TNC without knowing the IP address or TCP port. Thanks to Hessu for providing this. Currently available only for Linux and Mac OSX. [Read all about it here.](https://github.com/hessu/aprs-specs/blob/master/TCP-KISS-DNS-SD.md)
40+
41+
- The transmit calibration tone (-x) command line option now accepts a radio channel number and/or a single letter mode: a = alternate tones, m = mark tone, s = space tone, p = PTT only no sound.
42+
43+
- The BEACON configuration now recognizes the SOURCE= option. This replaces the AX.25 source address rather than using the MYCALL value for the channel. This is useful for sending more than 5 analog telemetry channels. Use two, or more, source addresses with up to 5 analog channels each.
44+
45+
- For more flexibility, the FX.25 transmit property can now be set individually by channel, rather than having a global setting for all channels. The -X on the command line applies only to channel 0. For other channels you need to add a new line to the configuration file. You can specify a specific number of parity bytes (16, 32, 64) or 1 to choose automatically based on packet size.
46+
47+
> After: "CHANNEL 1" (or other channel)
48+
>
49+
> Add: "FX25TX 1" (or 16 or 32 or 64)
50+
51+
52+
53+
### Bugs Fixed: ###
54+
55+
- The t/m packet filter incorrectly included bulletins. It now allows only "messages" to specific stations. Use of t/m is discouraged. i/180 is the preferred filter for messages to users recently heard locally.
56+
57+
- Packet filtering now skips over any third party header before classifying packet types.
58+
59+
- Fixed build for Alpine Linux.
60+
61+
### Notes: ###
62+
63+
The Windows binary distribution now uses gcc (MinGW) version 11.3.0.
64+
The Windows version is built for both 32 and 64 bit operating systems.
65+
Use the 64 bit version if possible; it runs considerably faster.
66+
67+
## Version 1.6 -- October 2020 ##
768

869
### New Build Procedure: ###
970

0 commit comments

Comments
 (0)