/*
 *	Delay functions for PIC
 *
 *	Functions available:
 *		DelayUs(x)	Delay specified number of microseconds
 *		DelayMs(x)	Delay specified number of milliseconds

 */
#include "system_config.h"
#include "stdint.h"

#define us_SCALE   (SYS_CLK_FREQ/2000000)
#define ms_SCALE   (SYS_CLK_FREQ/2000)



// prototype
//extern void DelayMs(unsigned int);
//extern void DelayUs(unsigned int);


