]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Adapted the "MacOS no sleep" patch from Davide Gerhard.
authorc vw <dl1ycf@darc.de>
Wed, 28 Apr 2021 15:01:45 +0000 (17:01 +0200)
committerc vw <dl1ycf@darc.de>
Wed, 28 Apr 2021 15:01:45 +0000 (17:01 +0200)
MacOS.c
Makefile.mac

diff --git a/MacOS.c b/MacOS.c
index 3fc19cfa027dafc83fdd3ae18e2612d9f5809324..12fb3e2f94125467a9e50b48b1c54fb7c5d35264 100644 (file)
--- a/MacOS.c
+++ b/MacOS.c
@@ -21,6 +21,8 @@
 #include <fcntl.h>
 #include <pwd.h>
 #include <uuid/uuid.h>
+#include <IOKit/IOKitLib.h>
+#include <IOKit/pwr_mgt/IOPMLib.h>
 
 void MacOSstartup(char *path) {
 //
@@ -54,6 +56,17 @@ 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
 //    
index 5a5c237520a8940c40d6053788452b42d337a9ac..584ba23291dbe8cb6565ebbffc22dd5b9698b35e 100644 (file)
@@ -9,7 +9,7 @@ GIT_VERSION := $(shell git describe --abbrev=0 --tags)
 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
@@ -143,6 +143,7 @@ GTKLIBS=`pkg-config --libs gtk+-3.0`
 
 AUDIO_OPTIONS=-DPORTAUDIO
 AUDIO_LIBS=-lportaudio
+MAC_LIBS=-framework IOKit
 
 OPTIONS=$(MIDI_OPTIONS) $(PURESIGNAL_OPTIONS) $(REMOTE_OPTIONS) $(USBOZY_OPTIONS) \
        $(SOAPYSDR_OPTIONS) $(LOCALCW_OPTIONS) \
@@ -150,7 +151,8 @@ OPTIONS=$(MIDI_OPTIONS) $(PURESIGNAL_OPTIONS) $(REMOTE_OPTIONS) $(USBOZY_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)