diff --git a/DSP_API/SmartSDR_Interface/cmd_basics.c b/DSP_API/SmartSDR_Interface/cmd_basics.c index 7329fe8..a68804e 100644 --- a/DSP_API/SmartSDR_Interface/cmd_basics.c +++ b/DSP_API/SmartSDR_Interface/cmd_basics.c @@ -135,11 +135,6 @@ uint32 cmd_exit(int requester_fd, int argc,char **argv) write(requester_fd, string1, strlen(string1)); -// if(argc > 1 && tolower(*argv[1]) == 'r') -// end_firmware(power_reboot); -// else -// end_firmware(power_leaveon); - _exit(0); return SUCCESS; } diff --git a/DSP_API/SmartSDR_Interface/sched_waveform.c b/DSP_API/SmartSDR_Interface/sched_waveform.c index 5a7a966..b7d207c 100644 --- a/DSP_API/SmartSDR_Interface/sched_waveform.c +++ b/DSP_API/SmartSDR_Interface/sched_waveform.c @@ -694,7 +694,7 @@ void sched_waveform_Init(void) pthread_create(&_waveform_thread, NULL, &_sched_waveform_thread, NULL); struct sched_param fifo_param; - fifo_param.sched_priority = 25; + fifo_param.sched_priority = 30; pthread_setschedparam(_waveform_thread, SCHED_FIFO, &fifo_param); }