Steve Marple
Steve Marple
It fails the regression test. Values which are expected to be read from test.ini are not found. Below is the diff that `make regressiontest` outputs: ``` Using file test.ini File...
That looks good, it passes the regression tests now. I noticed that I haven't made the library available for automatic installation via the IDE. I plan to update my master...
What bug does this fix? The regression tests pass without these changes. Generally the patch looks good and it passes the regressions tests in the `test/` directory (run `make clean;...
I have pushed several commits based on the pull request you submitted. I made sure you are credited with those changes, I also added you to the [contributors list](https://github.com/stevemarple/IniFile/blob/master/README.md#contributors). I...
> 1st > IniFile::readLine only have these return values > `errorFileNotOpen`, `errorBufferTooSmall`, `errorSeekError`, `errorEndOfFile`, `errorNoError` > Agreed. I've committed a change for that. > 2nd > > ``` > if...
I don't understand how this is connected to the `SoftWire` library, please explain.
`setMode()` probably hangs when it calls `if(!Newwire.available())` - that will be because the available function uses `_rxBufferIndex` and `_rxBufferBytesRead` which are only initialised in `setRxBuffer()`. In your `setMode()` function that...
Yesterday you posted a comment with your `setRegister()` code that contained references to to the `Wire` library, and the comment was removed a short while later. Does this mean you...
Are you using repeated starts? What version of `SoftWire` are you using?
Repeated starts are a feature of the I2C protocol, see https://www.i2c-bus.org/repeated-start-condition. There was an issue in `SoftWire` which meant repeated starts were not handled correctly, it was fixed in v...