Re: Paid contribution of a board configuration for w5500-evb-pico?

2024-04-08 Thread Adam Comley
For whoever is working on this, I have a working lower half for the W5500 on RP2040 here: https://github.com/Novators/nuttx/compare/apache%3Anuttx%3Amaster...rp2040-w5500 It has been working reliably for me on a custom board, and I have also tested it on a W5500-EVB-PICO. I've not done any

Re: how to add unique_id for Raspberry Pi Pico?

2024-04-03 Thread Adam Comley
_uniqueid[i] = (uint8_t)((x * 0x2545f4914f6cdd1dull) >> 32); } #endif } Any comments? Anders On Monday, 18 March 2024 at 06:51, Anders andyl...@proton.me.INVALID wrote: Hello Adam Excellent! Precisely what I was looking for. I'll check it out. Thanks, Anders On Sunday, 17 March 2024 at 12:54, Adam Co

Re: how to add unique_id for Raspberry Pi Pico?

2024-03-17 Thread Adam Comley
Hi Anders, I recently had a need for this feature as well, and put together a PR based on the pico-sdk implementation. See: https://github.com/apache/nuttx/pull/11927 Hope this helps. -- Adam