endif
ifeq ($(GPIO_INCLUDE),GPIO)
- GPIO_OPTIONS=-D GPIO
- GPIO_LIBS=-lwiringPi
- GPIO_SOURCES= \
+GPIOD_VERSION=$(shell pkg-config --modversion libgpiod)
+ifeq ($(GPIOD_VERSION),1.2)
+GPIOD_OPTIONS=-D OLD_GPIOD
+endif
+GPIO_OPTIONS=-D GPIO
+GPIO_LIBS=-lwiringPi
+GPIO_SOURCES= \
configure.c \
i2c.c \
encoder_menu.c
- GPIO_HEADERS= \
+GPIO_HEADERS= \
configure.h \
i2c.h \
encoder_menu.h
- GPIO_OBJS= \
+GPIO_OBJS= \
configure.o \
i2c.o \
encoder_menu.o
error_handler.c \
cwramp.c \
protocols.c \
+css.c \
+actions.c \
switch_menu.c \
gpio.c
ext.h \
error_handler.h \
protocols.h \
+css.h \
+actions.h \
switch_menu.h \
gpio.h
error_handler.o \
cwramp.o \
protocols.o \
+css.o \
+actions.o \
switch_menu.o \
gpio.o
--- /dev/null
+/*
+ * This file left empty intentionally
+ */
--- /dev/null
+/*
+ * This file left empty intentionally
+ */
--- /dev/null
+#include <gtk/gtk.h>
+
+char *css=
+" #small {\n"
+" padding: 0;\n"
+" font-family: Sans;\n"
+" font-size: 12px;\n"
+" }\n"
+;
+
+void load_css() {
+ GtkCssProvider *provider;
+ GdkDisplay *display;
+ GdkScreen *screen;
+
+ g_print("%s\n",__FUNCTION__);
+ provider = gtk_css_provider_new ();
+ display = gdk_display_get_default ();
+ screen = gdk_display_get_default_screen (display);
+ gtk_style_context_add_provider_for_screen (screen,
+ GTK_STYLE_PROVIDER(provider),
+ GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
+
+ gtk_css_provider_load_from_data(provider, css, -1, NULL);
+ g_object_unref (provider);
+}
#endif
#include "ext.h"
#ifdef GPIO
+#include "actions.h"
#include "gpio.h"
#include "configure.h"
#endif
#ifdef SOAPYSDR
#include "soapy_protocol.h"
#endif
+#include "actions.h"
#include "gpio.h"
static GtkWidget *parent_window=NULL;
#include "main.h"
#include "channel.h"
#include "discovered.h"
+#ifdef GPIO
+#include "actions.h"
#include "configure.h"
#include "gpio.h"
+#endif
#include "wdsp.h"
#include "new_menu.h"
#include "radio.h"
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);
extern struct utsname unameData;
enum {
- NO_CONTROLLER=0,
+ NO_CONTROLLER,
CONTROLLER1,
CONTROLLER2_V1,
CONTROLLER2_V2
#include "vfo_menu.h"
#include "fft_menu.h"
#include "main.h"
+#ifdef GPIO
#include "gpio.h"
+#include "actions.h"
+#endif
#include "old_protocol.h"
#include "new_protocol.h"
#ifdef CLIENT_SERVER
switch(controller) {
case NO_CONTROLLER:
+ {
+ GtkWidget *switches_b=gtk_button_new_with_label("Switches");
+ g_signal_connect (switches_b, "button-press-event", G_CALLBACK(switch_cb), NULL);
+ gtk_grid_attach(GTK_GRID(grid),switches_b,(i%5),i/5,1,1);
+ i++;
+ }
break;
case CONTROLLER1:
case CONTROLLER2_V1:
#ifdef SOAPYSDR
#include "soapy_protocol.h"
#endif
+#ifdef GPIO
+#include "actions.h"
#include "gpio.h"
+#endif
#include "vfo.h"
#include "ext.h"
#ifdef CLIENT_SERVER
col=0;
switch(controller) {
- default:
+ case NO_CONTROLLER:
+ // Nothing to do in this pihpsdr version
+ {
+ GtkWidget *text_w=gtk_label_new("Nothing to do here with the 'No Controller' option! ");
+ gtk_grid_attach(GTK_GRID(grid),text_w,1,1,3,1);
+ col++;
+ }
break;
case CONTROLLER1:
{
#ifndef _TOOLBAR_H
#define _TOOLBAR_H
+#include "gpio.h"
#define MAX_FUNCTION 5
extern int function;
-
void update_toolbar_labels();
void ptt_update(int state);
void mox_update(int state);
#include "tx_panadapter.h"
#include "vfo.h"
#include "mode.h"
+#include "actions.h"
#ifdef GPIO
#include "gpio.h"
#endif