From 5bc933b446bca0596c907c916cfdb97d6172c382 Mon Sep 17 00:00:00 2001 From: mer0m Date: Mon, 6 Feb 2017 15:15:18 +0100 Subject: [PATCH] . --- redpitaya/server/test.py | 6 ------ redpitaya/server/test_emb.py | 30 ------------------------------ 2 files changed, 36 deletions(-) delete mode 100644 redpitaya/server/test.py delete mode 100755 redpitaya/server/test_emb.py diff --git a/redpitaya/server/test.py b/redpitaya/server/test.py deleted file mode 100644 index 2ba73ef..0000000 --- a/redpitaya/server/test.py +++ /dev/null @@ -1,6 +0,0 @@ -import time - -with open('/dev/data16_adc12', 'r') as f: - for line in f: - print(line.encode('bin')) - time.sleep(0.1) diff --git a/redpitaya/server/test_emb.py b/redpitaya/server/test_emb.py deleted file mode 100755 index 837fd52..0000000 --- a/redpitaya/server/test_emb.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env python -import ctypes, argparse -import liboscimp_fpga - -def parse(): - parser = argparse.ArgumentParser(description = 'Set offsets to DAC1 and DAC2') - parser.add_argument('-of1', - action='store', - dest='of1', - default=0, - help='DAC1 offset (bits)') - parser.add_argument('-of2', - action='store', - dest='of2', - default=0, - help='DAC2 offset (bits)') - args = parser.parse_args() - return args - -def main(): - args = parse() - of1 = int(args.of1) - of2 = int(args.of2) - liboscimp_fpga.add_const_set_offset("/dev/add_const_0", of1) - liboscimp_fpga.add_const_set_offset("/dev/add_const_1", of2) - print('offset DAC1 : %i'%of1) - print('offset DAC2 : %i'%of2) - -if __name__ == "__main__": - main() -- 2.16.4