3 Commits

Author SHA1 Message Date
Logan Cusano
319e92b897 New logging 2022-03-28 05:56:20 +00:00
Logan Cusano
997c24949b Updated todo 2022-03-28 01:55:30 -04:00
Logan Cusano
326da757cf No pipes or STDIN/STDOUT 2022-03-28 01:46:50 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
- [x] Add method for user to change audio device without redoing entire config file
- [ ] Clean up code
- [ ] Transcode radio transmissions to text
- [ ] Need to create toggle/selection for OP25 debug mode
### Modules
#### Willie Timer
- [ ] Get more training data for WillieTimer

View File

@@ -66,8 +66,7 @@ class OP25Handler(threading.Thread):
self.logger.debug(f"OP25 Keyword Args: {p25_kwargs}")
self.OP25Proc = subprocess.Popen(p25_kwargs, executable=self.OP25EXE, shell=False, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=self.OP25Dir)
self.OP25Proc = subprocess.Popen(p25_kwargs, executable=self.OP25EXE, shell=False, cwd=self.OP25Dir)
def close_op25(self):
self.logger.info(f"Closing OP25")