-
Notifications
You must be signed in to change notification settings - Fork 72
/
main.c
365 lines (305 loc) · 9.95 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
/* Copyright (C)
* 2015 - John Melton, G0ORX/N6LYT
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
// Define maximum window size.
// Standard values 800 and 480: suitable for RaspberryBi 7-inch screen
#define MAX_DISPLAY_WIDTH 800
#define MAX_DISPLAY_HEIGHT 480
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#include <math.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <semaphore.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "audio.h"
#include "band.h"
#include "bandstack.h"
#include "main.h"
#include "channel.h"
#include "discovered.h"
#include "configure.h"
#include "actions.h"
#ifdef GPIO
#include "gpio.h"
#endif
#include "wdsp.h"
#include "new_menu.h"
#include "radio.h"
#include "version.h"
#include "button_text.h"
#ifdef I2C
#include "i2c.h"
#endif
#include "discovery.h"
#include "new_protocol.h"
#include "old_protocol.h"
#ifdef SOAPYSDR
#include "soapy_protocol.h"
#endif
#include "ext.h"
#include "vfo.h"
#include "css.h"
struct utsname unameData;
gint display_width;
gint display_height;
gint full_screen=1;
static GtkWidget *discovery_dialog;
static GdkCursor *cursor_arrow;
static GdkCursor *cursor_watch;
static GtkWidget *splash;
GtkWidget *top_window;
GtkWidget *grid;
static DISCOVERED* d;
static GtkWidget *status;
void status_text(char *text) {
//fprintf(stderr,"splash_status: %s\n",text);
gtk_label_set_text(GTK_LABEL(status),text);
usleep(100000);
while (gtk_events_pending ())
gtk_main_iteration ();
}
static gint save_cb(gpointer data) {
radioSaveState();
return TRUE;
}
static pthread_t wisdom_thread_id;
static int wisdom_running=0;
static void* wisdom_thread(void *arg) {
WDSPwisdom ((char *)arg);
wisdom_running=0;
return NULL;
}
//
// handler for key press events.
// SpaceBar presses toggle MOX, everything else downstream
// code to switch mox copied from mox_cb() in toolbar.c,
// but added the correct return values.
//
gboolean keypress_cb(GtkWidget *widget, GdkEventKey *event, gpointer data) {
if (radio != NULL) {
if (event->keyval == GDK_KEY_space) {
fprintf(stderr, "space");
if(getTune()==1) {
setTune(0);
}
if(getMox()==1) {
setMox(0);
} else if(canTransmit() || tx_out_of_band) {
setMox(1);
} else {
transmitter_set_out_of_band(transmitter);
}
g_idle_add(ext_vfo_update,NULL);
return TRUE;
}
if (event->keyval == GDK_KEY_d ) {
vfo_move(step,TRUE);
return TRUE;
}
if (event->keyval == GDK_KEY_u ) {
vfo_move(-step,TRUE);
return TRUE;
}
}
return FALSE;
}
gboolean main_delete (GtkWidget *widget) {
if(radio!=NULL) {
#ifdef GPIO
gpio_close();
#endif
#ifdef CLIENT_SERVER
if(!radio_is_remote) {
#endif
switch(protocol) {
case ORIGINAL_PROTOCOL:
old_protocol_stop();
break;
case NEW_PROTOCOL:
new_protocol_stop();
break;
#ifdef SOAPYSDR
case SOAPYSDR_PROTOCOL:
soapy_protocol_stop();
break;
#endif
}
#ifdef CLIENT_SERVER
}
#endif
radioSaveState();
}
_exit(0);
}
static int init(void *data) {
char wisdom_directory[1024];
g_print("%s\n",__FUNCTION__);
audio_get_cards();
// wait for get_cards to complete
//g_mutex_lock(&audio_mutex);
//g_mutex_unlock(&audio_mutex);
cursor_arrow=gdk_cursor_new(GDK_ARROW);
cursor_watch=gdk_cursor_new(GDK_WATCH);
gdk_window_set_cursor(gtk_widget_get_window(top_window),cursor_watch);
//
// Let WDSP (via FFTW) check for wisdom file in current dir
// If there is one, the "wisdom thread" takes no time
// Depending on the WDSP version, the file is wdspWisdom or wdspWisdom00.
// sem_trywait() is not elegant, replaced this with wisdom_running variable.
//
char *c=getcwd(wisdom_directory, sizeof(wisdom_directory));
strcpy(&wisdom_directory[strlen(wisdom_directory)],"/");
fprintf(stderr,"Securing wisdom file in directory: %s\n", wisdom_directory);
status_text("Checking FFTW Wisdom file ...");
wisdom_running=1;
pthread_create(&wisdom_thread_id, NULL, wisdom_thread, wisdom_directory);
while (wisdom_running) {
// wait for the wisdom thread to complete, meanwhile
// handling any GTK events.
usleep(100000); // 100ms
while (gtk_events_pending ()) {
gtk_main_iteration ();
}
status_text(wisdom_get_status());
}
g_idle_add(ext_discovery,NULL);
return 0;
}
static void activate_pihpsdr(GtkApplication *app, gpointer data) {
//gtk_init (&argc, &argv);
fprintf(stderr,"Build: %s %s\n",build_date,version);
fprintf(stderr,"GTK+ version %ud.%ud.%ud\n", gtk_major_version, gtk_minor_version, gtk_micro_version);
uname(&unameData);
fprintf(stderr,"sysname: %s\n",unameData.sysname);
fprintf(stderr,"nodename: %s\n",unameData.nodename);
fprintf(stderr,"release: %s\n",unameData.release);
fprintf(stderr,"version: %s\n",unameData.version);
fprintf(stderr,"machine: %s\n",unameData.machine);
load_css();
GdkScreen *screen=gdk_screen_get_default();
if(screen==NULL) {
fprintf(stderr,"no default screen!\n");
_exit(0);
}
display_width=gdk_screen_get_width(screen);
display_height=gdk_screen_get_height(screen);
fprintf(stderr,"width=%d height=%d\n", display_width, display_height);
// Go to "window" mode if there is enough space on the screen.
// Do not forget extra space needed for window top bars, screen bars etc.
if(display_width>(MAX_DISPLAY_WIDTH+10) && display_height>(MAX_DISPLAY_HEIGHT+30)) {
display_width=MAX_DISPLAY_WIDTH;
display_height=MAX_DISPLAY_HEIGHT;
full_screen=0;
} else {
//
// Some RaspPi variants report slightly too large screen sizes
// on a 7-inch screen, e.g. 848*480 while the physical resolution is 800*480
// Therefore, as a work-around, limit window size to 800*480
//
if (display_width > MAX_DISPLAY_WIDTH) {
display_width = MAX_DISPLAY_WIDTH;
}
if (display_height > MAX_DISPLAY_HEIGHT) {
display_height = MAX_DISPLAY_HEIGHT;
}
full_screen=1;
}
fprintf(stderr,"display_width=%d display_height=%d\n", display_width, display_height);
fprintf(stderr,"create top level window\n");
top_window = gtk_application_window_new (app);
if(full_screen) {
fprintf(stderr,"full screen\n");
gtk_window_fullscreen(GTK_WINDOW(top_window));
}
gtk_widget_set_size_request(top_window, display_width, display_height);
gtk_window_set_title (GTK_WINDOW (top_window), "piHPSDR");
gtk_window_set_position(GTK_WINDOW(top_window),GTK_WIN_POS_CENTER_ALWAYS);
gtk_window_set_resizable(GTK_WINDOW(top_window), FALSE);
fprintf(stderr,"setting top window icon\n");
GError *error;
if(!gtk_window_set_icon_from_file (GTK_WINDOW(top_window), "hpsdr.png", &error)) {
fprintf(stderr,"Warning: failed to set icon for top_window\n");
if(error!=NULL) {
fprintf(stderr,"%s\n",error->message);
}
}
g_signal_connect (top_window, "delete-event", G_CALLBACK (main_delete), NULL);
//g_signal_connect (top_window,"draw", G_CALLBACK (main_draw_cb), NULL);
//
// We want to use the space-bar as an alternative to go to TX
//
gtk_widget_add_events(top_window, GDK_KEY_PRESS_MASK);
g_signal_connect(top_window, "key_press_event", G_CALLBACK(keypress_cb), NULL);
fprintf(stderr,"create grid\n");
grid = gtk_grid_new();
gtk_widget_set_size_request(grid, display_width, display_height);
gtk_grid_set_row_homogeneous(GTK_GRID(grid),FALSE);
gtk_grid_set_column_homogeneous(GTK_GRID(grid),FALSE);
fprintf(stderr,"add grid\n");
gtk_container_add (GTK_CONTAINER (top_window), grid);
fprintf(stderr,"create image\n");
GtkWidget *image=gtk_image_new_from_file("hpsdr.png");
fprintf(stderr,"add image to grid\n");
gtk_grid_attach(GTK_GRID(grid), image, 0, 0, 1, 4);
fprintf(stderr,"create pi label\n");
char build[128];
sprintf(build,"build: %s %s",build_date, version);
GtkWidget *pi_label=gtk_label_new("piHPSDR by John Melton g0orx/n6lyt");
gtk_label_set_justify(GTK_LABEL(pi_label),GTK_JUSTIFY_LEFT);
gtk_widget_show(pi_label);
fprintf(stderr,"add pi label to grid\n");
gtk_grid_attach(GTK_GRID(grid),pi_label,1,0,1,1);
fprintf(stderr,"create build label\n");
GtkWidget *build_date_label=gtk_label_new(build);
gtk_label_set_justify(GTK_LABEL(build_date_label),GTK_JUSTIFY_LEFT);
gtk_widget_show(build_date_label);
fprintf(stderr,"add build label to grid\n");
gtk_grid_attach(GTK_GRID(grid),build_date_label,1,1,1,1);
fprintf(stderr,"create status\n");
status=gtk_label_new("");
gtk_label_set_justify(GTK_LABEL(status),GTK_JUSTIFY_LEFT);
//gtk_widget_override_font(status, pango_font_description_from_string("FreeMono 18"));
gtk_widget_show(status);
fprintf(stderr,"add status to grid\n");
gtk_grid_attach(GTK_GRID(grid), status, 1, 3, 1, 1);
gtk_widget_show_all(top_window);
fprintf(stderr,"g_idle_add: init\n");
g_idle_add(init,NULL);
}
int main(int argc,char **argv) {
GtkApplication *pihpsdr;
int status;
char name[1024];
#ifdef __APPLE__
void MacOSstartup(char *path);
MacOSstartup(argv[0]);
#endif
sprintf(name,"org.g0orx.pihpsdr.pid%d",getpid());
//fprintf(stderr,"gtk_application_new: %s\n",name);
pihpsdr=gtk_application_new(name, G_APPLICATION_FLAGS_NONE);
g_signal_connect(pihpsdr, "activate", G_CALLBACK(activate_pihpsdr), NULL);
status=g_application_run(G_APPLICATION(pihpsdr), argc, argv);
fprintf(stderr,"exiting ...\n");
g_object_unref(pihpsdr);
return status;
}