
/***********************************************************************
DESC:    gets the next byte to be transmitted when operating as
         a master
RETURNS: byte to transmit
************************************************************************/
unsigned char i2c_master_getbyte(unsigned int bytenum)    
			// number of the byte in this transfer
                        // (0 = first byte)
{
  // insert code
  return 0x00;
} 
