HAL I2C Without Sending Address Byte?
Is there any way to configure the HAL to communicate to a slave via I2C WITHOUT sending the address byte first? I know this is part of the I2C standard, but I would like to implement a TM1637 device, which is similar to I2C but does not use an address byte.
I have already implemented a "bit bang" version with delays and GPIO, but it would be nice to use the HAL directly somehow.
HAL I2C already gives me STARTs, writes, reads and STOPs, which is most of the TM1637 protocol. If I could just turn off that pesky address byte!
Or maybe this can be done with the SPI interface instead.
Suggestions welcome ...
