/*
* Andy Neil, Antronics Ltd.
* Modulator.C
* Comments: Keil C51 definitions corresponding to the definitions in
*           the Modulator.asm file from Philips in support of their
*           Application Note AN10210, "Using the Philips 87LPC76x 
*           microcontroller as a remote control transmitter"
*/

// Data "objects"
unsigned char    system;
unsigned char    command;


// Code "objects"
void RC5_Init(void)
{
   // No code here - just want to get interface, names, etc right!
}

void Send_RC5(void)
{
   // No code here - just want to get interface, names, etc right!
}