Paul Jones

Results 14 comments of Paul Jones

Has anyone made progress porting this to an F7 series chip yet? Using the F429 driver and the cdc demo I've got as far as receiving a bus reset event,...

I just had the same problem - I selected Prometheus on import (It was the only option), but all the datasource values in the created json code changed from "datasource":...

I have the same problem. The first part of the training succeeds, the second part can't allocate enough memory. On Linux it will keep training regardless, but on windows it...

FYI: I solved the OOM by reducing the batch size from 16 to 14

Same problem here. There are a few instances that need changing.

I missed checking CityHash64, it's faster for me too at around 18 GB/s on 64bit and 2.5 GB/s on 32 bit. I'll use that instead. I also think I should...

I was thinking the hash algo can be set on first run (defaulting to crc64 for now) and subsequent runs can just set it based on what the hash table...

I just had a similar problem, I was using JObject.ToString() and was also getting "{}" as the output. Disabling "Trim unused code" in publish options fixed the problem. Publish options...

#include needs to be included in ModbusRTUServer.cpp and ModbusRTUClient.cpp otherwise ``` In file included from .pio\libdeps\esp8266\ArduinoModbus\src\ModbusRTUClient.cpp:23: .pio\libdeps\esp8266\ArduinoModbus\src\libmodbus/modbus.h:64:33: error: 'SerialConfig' has not been declared 64 | #define RS485_SER_CONF_TYPE SerialConfig ```

Actually it is: ``` HardwareSerial Serial2(mbrxPin, mbtxPin); RS485Class Rs485(Serial2, mbtxPin, dePin, rePin); ```