diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-03-18 20:35:15 +0100 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-03-18 20:35:15 +0100 |
commit | 37338e2ad8ca226119121432b65f6c61134e60ac (patch) | |
tree | 4e5583b42ccdb2b7e504b5ccfeac2b2dc8e25ed8 /lab-windows/scratch.ipynb | |
parent | 639a4d1386b6d9b3be91ff03d09104a63db4ea45 (diff) | |
download | master-thesis-37338e2ad8ca226119121432b65f6c61134e60ac.tar.gz master-thesis-37338e2ad8ca226119121432b65f6c61134e60ac.tar.bz2 master-thesis-37338e2ad8ca226119121432b65f6c61134e60ac.zip |
Fix firmware dsss decoding bug
This is my #1 top dumbest bug like ever
Diffstat (limited to 'lab-windows/scratch.ipynb')
-rw-r--r-- | lab-windows/scratch.ipynb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lab-windows/scratch.ipynb b/lab-windows/scratch.ipynb index d31ef92..6459245 100644 --- a/lab-windows/scratch.ipynb +++ b/lab-windows/scratch.ipynb @@ -129,12 +129,12 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 44, "metadata": {}, "outputs": [], "source": [ - "with open('data/dsss_test_demod_fixed_03.bin', 'wb') as f:\n", - " for freq in read_freq_log('data/dsss_test_demod_fixed_03.log'):\n", + "with open('data/dsss_test_demod_fixed_05.bin', 'wb') as f:\n", + " for freq in read_freq_log('data/dsss_test_demod_fixed_05.log'):\n", " f.write(struct.pack('f', freq))" ] }, |