X-Git-Url: https://git.ao2.it/SaveMySugar/python3-savemysugar.git/blobdiff_plain/88fce7811221c360966eb3af691a719930a2514d..a092a2258acd203f0d3abb914bd89d2edb2bc788:/plot/call_distance_modulation.gnuplot?ds=sidebyside

diff --git a/plot/call_distance_modulation.gnuplot b/plot/call_distance_modulation.gnuplot
index 207eedb..70a171e 100755
--- a/plot/call_distance_modulation.gnuplot
+++ b/plot/call_distance_modulation.gnuplot
@@ -39,6 +39,11 @@ receive_data="codex_receive.log"
 #transmit_data="savemysugar_transmit.log"
 #receive_data="savemysugar_receive.log"
 
+#transmit_data="android_codex_transmit.log"
+#receive_data="android_codex_receive.log"
+#transmit_data="android_savemysugar_transmit.log"
+#receive_data="android_savemysugar_receive.log"
+
 set terminal unknown
 
 plot transmit_data using 1:(1)
@@ -49,10 +54,6 @@ receiver_t0 = GPVAL_DATA_X_MIN
 
 t0 = min(sender_t0, receiver_t0)
 
-call_setup_time = receiver_t0 - sender_t0
-call_time_error = 1.2
-call_time = call_setup_time + call_time_error
-
 morse_symbol(symbol) = symbol eq " " ? "sep" : symbol eq "/" ? "SEP" : symbol
 end_of_signal(symbol) = (symbol eq " ") || (symbol eq "/") || (symbol eq "EOM")
 text_character(symbol, character) = symbol eq "/" ? character . "␣" : character
@@ -62,9 +63,9 @@ set terminal qt 0 enhanced font "Georgia,14" size _w,_h
 #set output 'pulse_distance_modulation.png'
 
 plot \
-  transmit_data using (0):(0):($1 - t0):($1 - t0 + call_time):(0):(0.5) with boxxy \
+  transmit_data using (0):(0):($1 - t0):($1 - t0 + $8):(0):(0.5) with boxxy \
     fs solid noborder lc "#90caf9" title 'outgoing calls', \
-  receive_data using ($1 - t0):(0.5) with impulses lw 2 lc '#ff3d00' title 'ingoing rings', \
+  receive_data using ($1 - t0):(0.5) with impulses lw 2 lc '#ff3d00' title 'incoming rings', \
   receive_data using ($4 > 0 ? $1 - t0 : 1/0):(0.53):(-$4):(0) with vectors arrowstyle 1 notitle, \
   receive_data using ($4 > 0 ? ($1 - t0) - ($4 / 2) : 1/0):(0.56):(morse_symbol(strcol(6))) with labels notitle, \
   receive_data using (end_of_signal(strcol(6)) ? ($1 - t0) : 1/0):(0.61):(text_character(strcol(6), strcol(8))) with labels font "Courier,14" notitle, \