Rodgers-PAC-Lab
Rodgers-PAC-Lab
success?? I think that adding `self.node.sock.close()` in __both__ the Parent and Child `end()` functions might fix this. https://github.com/Rodgers-PAC-Lab/autopilot/commit/ec78bc95f9751013cb8a0e171e41c8170fb1db5b along with the aforementioned `self.node.router.close()`, which is only needed in the Parent,...
Awesome, thanks for doing all this to implement the filtering methods! On my end, it seems to work. I added a commit that adds documentation that would be helpful to...
Oh, also is there a reason we're leaving strings as bytestrings (b"asdf") instead of decoding them to utf-8 ("asdf")?
Agree this is an issue, also discussed here: https://github.com/wehr-lab/autopilot/issues/148#issuecomment-1034394737 I'm not getting a NodeError, but rather a silent dropping of data that has been added to TrialData but not to...
Yeah, it's in Python. Just s = SPIDriver("/dev/SPIDriver"), then some setup code where I use a and b outputs to toggle a reset pin and start pin to wake up...
Alas, that didn't change much. Brought it down to 29 us. That makes sense though, thanks for explaining it. Even if SPIDriver isn't fast enough for our final application it's...
Quick question: would this also happen if we used the C/C++ driver? I see that the EFM8BB1 MCU datasheet claims speeds up to 24 MHz. I'm way less competent in...