A review of Arduino Wire lib shows the public declaration:
void setClock(uint32_t);
and something rather hardware-specific in the implementation, e.g.,
void TwoWire::setClock(uint32_t frequency) {
TWBR = ((F_CPU / frequency) - 16) / 2; // <-- specific to AVR
}
I'm new to the RBL CC3200 device I'm attempting to bring-up. If anyone has modified the I2C bus speed on this device, I'll be happy to get your input. My need is for a write-once setting at system initialization, nothing dynamic.