mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
83b420be9a
removed subdirectories for each test group
22 lines
272 B
Python
22 lines
272 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)
|
|
|
|
|
|
|
|
|
|
|