david284

Results 5 comments of david284

Hi Guys, Has support for SPI been added to ArduinoFake? - the trail above suggested it was being looked at Trying to setup testing for a project that includes an...

I forgot to mention that I had to change the SPI pin assignments to match the 'default' SPI0 pins in the arduino header file in version 2.6.1, to get the...

The library is using byte orientated read/writes I believe   byte readEEPROM(unsignedinteeaddress); voidwriteEEPROM(unsignedinteeaddress, byte data);   byte readBytesEEPROM(unsignedinteeaddress, byte nbytes, byte dest[]); voidwriteBytesEEPROM(unsignedinteeaddress, byte src[], byte numbytes); If that's what you're asking...

Looks like I have the same problem with a DS216j running DSM 6.2 - as above, the package was successfully installed but no drivers added I need the ch341.ko driver...

Ok - found a solution - wrapped the include in an #ifndef Not pretty, but does the job ``` #ifndef PIO_UNIT_TESTING #include #endif ```