mirror of
https://github.com/n5ac/smartsdr-dsp.git
synced 2025-12-06 03:01:59 +01:00
Use 30 priority level and remove old debug code
This commit is contained in:
parent
72097c1f42
commit
f053183349
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue