Joe Earlam

Results 7 comments of Joe Earlam

Thanks, that's a useful feature but it's not what I'm talking about - the round trip is quick as the MCU on the other end of the bus responds quickly,...

Python version: 3.8.10 OS: Ubuntu 20.04 X64_86 Hardware: PC pyserial version: 3.5 serial port hardware: FTDI 3.3V RS232 converter, ID 0403:6001 with Seeed RS485 converter (MAX13487).

Hi, this is how I do it: `void testRead(uint8_t addr) { node.setSlaveID(addr); if (node.readHoldingRegisters(17, 35) == node.ku8MBSuccess) { for (uint8_t j = 0; j < 35; j++) { data[j] =...

This works in 2.0.1 using the setSlaveID() function: `void testRead(uint8_t addr) { node.setSlaveID(addr); if (node.readHoldingRegisters(17, 35) == node.ku8MBSuccess) { for (uint8_t j = 0; j < 35; j++) { data[j]...

TX and RX depend on the Arduino you're using, check the pinout for it. You choose RE and TE.

Hi, I'm using the same board package with a standard Pi Pico. I am however using IDE 2.0.0. On Thu, 27 Oct 2022, 16:51 Michal Borowski, ***@***.***> wrote: > Hello,...

I deleted the SDfat library and it now compiles correctly. Also, if I add #define CSV_PARSER_DONT_IMPORT_SD to the library's .cpp file it compiles correctly, even with the SDfat library installed....