Greg Herlein
Greg Herlein
The stock rp2040.cfg file is missing from the Zephyr fork of openocd. This prevents "west flash" from working using a PicoProbe (or a Pico set up as a PicoProbe). Zephyr...
I tried it, and got a basic AP to start and accept the password. What I don't grok - and don't see an example for - is how to set...
I'm struggling to get the examples to work. I changed line 11 in blink_pio.go to sm.SetPindirsConsecutive(pin, 1, true) and I got it to work. I suspect the API morphed after...
While building the NonArduino/Pico example, I see this: ``` /home/gherlein/src/pico-projects/forks/RadioLib/src/Module.cpp: In member function 'void Module::SPIreadRegisterBurst(uint32_t, size_t, uint8_t*)': /home/gherlein/src/pico-projects/forks/RadioLib/src/Module.cpp:116:19: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=] 116...
@ofauchon perhaps you know? var ( spi = machine.SPI1 nssPin, busyPin, dio1Pin = machine.GP13, machine.GP6, machine.GP7 rxPin, txLowPin, txHighPin = machine.GP9, machine.GP8, machine.GP8 ) what are those pin names? nss...
If I have a go.mod with: module tinygo.org/x/drivers I get this error: ```bash gherlein@io:~/src/tinygo/m$ go mod tidy go: finding module for package tinygo.org/x/drivers/mcp2515 go: tinygo.org/x/drivers imports tinygo.org/x/drivers/mcp2515: cannot find module...
This may be something I don't grok about how the UART and the wifi chip interact. Here's the setup NOT using wifi: I have a PicoProbe connected to SWD and...