-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyconf.py
More file actions
24 lines (21 loc) · 1.07 KB
/
Copy pathmyconf.py
File metadata and controls
24 lines (21 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
dn_local_folder = os.path.abspath(__file__)
if os.path.isfile(dn_local_folder):
dn_local_folder = os.path.dirname(dn_local_folder)+os.sep
# input and output paths, configuration files.
#fn_test_message = dn_local_folder+'t0_joao_3_16.txt'
fn_test_message = dn_local_folder + 't2_cancao_do_exilio.txt'
dn_fldigi_configuration_folder = dn_local_folder+'fldigi_conf'+os.sep
fn_macro_file = dn_fldigi_configuration_folder+'macros'+os.sep+'macros.mdf'
dn_fldigi_home_folder = dn_local_folder+'fldigi_home'+os.sep
dn_output_folder = dn_local_folder+'audio_temp'+os.sep
fn_simulation_file = dn_output_folder+'simulation.csv'
fn_audio = dn_output_folder+'audio.wav'
fn_message = dn_output_folder+'message.txt'
fn_modes_to_test = dn_local_folder+'modes_to_test.csv'
fn_mode_info = dn_output_folder+'mode_info.json'
dn_results_folder = dn_local_folder+'results'+os.sep
fn_datapoints = dn_results_folder+'datapoints.json'
fn_mode_info = dn_results_folder+'mode_info.json'
fn_results_md = dn_local_folder+'results.md'
fn_simulation_templates = dn_local_folder+'simulation_templates.csv'