Merge pull request #241 from DJ2LS/ls_fix_issue_240

hotfix for #240 and failing GitHub action
This commit is contained in:
DJ2LS 2022-09-10 07:46:54 +02:00 committed by GitHub
commit 206bc6f068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 8 deletions

View file

@ -114,8 +114,8 @@ jobs:
distro: bullseye
libcodec2_os_name: libcodec2_ubuntu-bullseye_armv7.so
- arch: armv7
distro: ubuntu18.04
libcodec2_os_name: libcodec2_ubuntu-1804_armv7.so
distro: ubuntu20.04
libcodec2_os_name: libcodec2_ubuntu-2004_armv7.so
steps:
- uses: actions/checkout@v2.1.0
@ -154,15 +154,18 @@ jobs:
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
apt-get update -q -y
apt-get install -q -y git build-essential cmake
apt-get install -q -y git build-essential cmake gcc g++
cmake --version
;;
fedora*)
dnf -y update
dnf -y install git which build-essential cmake
dnf -y install git which build-essential cmake gcc-c++ gcc
cmake --version
;;
alpine*)
apk update
apk add git build-essential cmake
apk add git build-essential cmake gcc g++
cmake --version
;;
esac

View file

@ -31,7 +31,6 @@ class FREEDV_MODE(Enum):
fsk_ldpc_0 = 200
fsk_ldpc_1 = 201
# Function for returning the mode value
def freedv_get_mode_value_by_name(mode: str) -> int:
"""

View file

@ -805,7 +805,6 @@ class DATA:
self.log.info(
"[TNC] | TX | DATACHANNEL",
mode=FREEDV_MODE(mode).name,
Bytes=static.TOTAL_BYTES,
)
@ -843,7 +842,7 @@ class DATA:
# we have TX_N_MAX_RETRIES_PER_BURST attempts for sending a burst
for self.tx_n_retry_of_burst in range(TX_N_MAX_RETRIES_PER_BURST):
data_mode = mode
self.log.debug("[TNC] FIXED MODE:", mode=FREEDV_MODE(data_mode).name)
# self.log.debug("[TNC] FIXED MODE:", mode=FREEDV_MODE(data_mode).name)
# we are doing a modulo check of transmission retries of the actual burst
# every 2nd retry which fails, decreases speedlevel by 1.