Elizabeth Myers
Elizabeth Myers
> If we can do something like `dirname $line`? But that depends on coreutils. `dirname` is POSIX, but: ```sh elizabeth@ember:~ % dirname "AC_CONFIG_AUX_DIR(utils)" . ``` That won't work. The best...
Is this a dupe of #684?
It's because we're hitting mirrors directly and being throttled. We shouldn't do that, though I'm unsure of alternatives.
Clock polarity and phase should be the same. lgpio uses 8 bits. I'm really at a loss here.
So perhaps to help troubleshoot, here's some information: ## My setup * Raspberry Pi Zero 2W * Breadboard * Jumper wires * RFM95W module from Adafruit * Quarter-wave antenna ##...
Huh! I swore that was fine... but that makes sense! I will give it a spin locally and report back. I'm also giving out a try porting it to gpiod...
> ```c++ > unsigned long millis() override { > uint32_t time = lguTimestamp() / 1000000UL; > return time; > } > > unsigned long micros() override { > uint32_t time...
> > I'm also giving out a try porting it to gpiod and spidev directly > > That would be extremely interesting! > > > it's probably better to move...
I think lgpio might be the way to go here. Event management with gpiod is a pain in this mode... we'd have to spawn a thread, lock/unlock data structures, etc......
An example would be `init()`. Instead of returning `void`, it can return an int (which can be ignored on Arduino or other places we generally assume it's going to succeed)....