#include <fcntl.h>
#include <pwd.h>
#include <uuid/uuid.h>
+#include <IOKit/IOKitLib.h>
+#include <IOKit/pwr_mgt/IOPMLib.h>
void MacOSstartup(char *path) {
//
struct stat st;
int fdin, fdout;
int rc;
+ static IOPMAssertionID keep_awake = 0;
+
+//
+// This is to prevent "going to sleep" or activating the screen saver
+// while piHPSDR is running
+//
+// works from macOS 10.6 so should be enough
+// no return check is needed
+
+ IOPMAssertionCreateWithName (kIOPMAssertionTypeNoDisplaySleep, kIOPMAssertionLevelOn,
+ CFSTR ("piHPSDR"), &keep_awake);
//
// If the current work dir is NOT "/", just do nothing
//
PURESIGNAL_INCLUDE=PURESIGNAL
# uncomment the line to below include support local CW keyer
-LOCALCW_INCLUDE=LOCALCW
+#LOCALCW_INCLUDE=LOCALCW
# uncomment the line below for SoapySDR
#SOAPYSDR_INCLUDE=SOAPYSDR
AUDIO_OPTIONS=-DPORTAUDIO
AUDIO_LIBS=-lportaudio
+MAC_LIBS=-framework IOKit
OPTIONS=$(MIDI_OPTIONS) $(PURESIGNAL_OPTIONS) $(REMOTE_OPTIONS) $(USBOZY_OPTIONS) \
$(SOAPYSDR_OPTIONS) $(LOCALCW_OPTIONS) \
$(CONTROLLER2_OPTIONS) $(AUDIO_OPTIONS) \
-D GIT_DATE='"$(GIT_DATE)"' -D GIT_VERSION='"$(GIT_VERSION)"' $(DEBUG_OPTION)
-LIBS= -lm -lwdsp -lpthread $(AUDIO_LIBS) $(USBOZY_LIBS) $(GTKLIBS) $(SOAPYSDRLIBS) $(STEMLAB_LIBS) $(MIDI_LIBS)
+LIBS= -lm -lwdsp -lpthread $(MAC_LIBS) $(AUDIO_LIBS) $(USBOZY_LIBS) $(GTKLIBS) \
+ $(SOAPYSDRLIBS) $(STEMLAB_LIBS) $(MIDI_LIBS)
INCLUDES=$(GTKINCLUDES)
COMPILE=$(CC) $(CFLAGS) $(OPTIONS) $(INCLUDES)