mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
72b653b188
added a directory 003_highsnr_stdio_arq for working on ARQ tests
22 lines
278 B
Python
22 lines
278 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created on Wed Dec 23 07:04:24 2020
|
|
|
|
@author: DJ2LS
|
|
"""
|
|
|
|
import sys
|
|
sys.path.insert(0,'../..')
|
|
sys.path.insert(0,'../../tnc')
|
|
import data_handler
|
|
|
|
|
|
teststring = b'HELLO WORLD'
|
|
|
|
data_handler.arq_transmit(teststring, 10, 1)
|
|
|
|
|
|
|
|
|
|
|