#define mainRX_ENABLE ( ( unsigned portLONG ) 0x0004 )\r
\r
/* Constants to setup the PLL. */\r
-#define mainPLL_MUL_4 ( ( unsigned portCHAR ) 0x0003 )\r
+#define mainPLL_MUL_5 ( ( unsigned portCHAR ) 0x0004 )\r
#define mainPLL_DIV_1 ( ( unsigned portCHAR ) 0x0000 )\r
#define mainPLL_ENABLE ( ( unsigned portCHAR ) 0x0001 )\r
#define mainPLL_CONNECT ( ( unsigned portCHAR ) 0x0003 )\r
\r
static void prvSetupHardware( void )\r
{\r
- /* Setup the PLL to multiply the XTAL input by 4. */\r
- PLLCFG = ( mainPLL_MUL_4 | mainPLL_DIV_1 );\r
+ /* Setup the PLL to multiply the XTAL input by 5. */\r
+ PLLCFG = ( mainPLL_MUL_5 | mainPLL_DIV_1 );\r
\r
/* Activate the PLL by turning it on then feeding the correct sequence of\r
bytes. */\r