
void i2c_transmit_byte(unsigned char byte)
{
  ...
<b>
  /* Wait for slave to acknowledge. */
    while(SDA) continue;
</b>
  ...
}
