comparison FXAnalyse.c @ 231:c10236b5a3e9

Show Plot and Allan windows in the taskbar
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Mon, 27 Oct 2014 18:03:35 +0100
parents 9e240adb3053
children 52f882f39c16
comparison
equal deleted inserted replaced
230:9e240adb3053 231:c10236b5a3e9
76 76
77 77
78 #define ADEV(__channel, __normalization) \ 78 #define ADEV(__channel, __normalization) \
79 { \ 79 { \
80 .data = & ## __channel, \ 80 .data = & ## __channel, \
81 .title = #__channel, \ 81 .title = "Adev " #__channel, \
82 .normalization = __normalization, \ 82 .normalization = __normalization, \
83 .control = PANEL_ADEV_ ## __channel \ 83 .control = PANEL_ADEV_ ## __channel \
84 } 84 }
85 85
86 86
127 127
128 128
129 #define PLOT(__channel, __min, __max) \ 129 #define PLOT(__channel, __min, __max) \
130 { \ 130 { \
131 .data = & ## __channel, \ 131 .data = & ## __channel, \
132 .title = #__channel, \ 132 .title = "Plot " #__channel, \
133 .min = __min, \ 133 .min = __min, \
134 .max = __max, \ 134 .max = __max, \
135 .control = PANEL_PLOT_ ## __channel \ 135 .control = PANEL_PLOT_ ## __channel \
136 } 136 }
137 137