The common folder libraries from keil LPC11Uxx code bundle

Committer:
alexan_e
Date:
Sun May 27 23:59:30 2012 +0000
Revision:
0:05d110ee258e

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
alexan_e 0:05d110ee258e 1 /****************************************************************************
alexan_e 0:05d110ee258e 2 * $Id:: clkconfig.h 6172 2011-01-13 18:22:51Z usb00423 $
alexan_e 0:05d110ee258e 3 * Project: NXP LPC11xx software example
alexan_e 0:05d110ee258e 4 *
alexan_e 0:05d110ee258e 5 * Description:
alexan_e 0:05d110ee258e 6 * This file contains definition and prototype for clock configuration.
alexan_e 0:05d110ee258e 7 *
alexan_e 0:05d110ee258e 8 ****************************************************************************
alexan_e 0:05d110ee258e 9 * Software that is described herein is for illustrative purposes only
alexan_e 0:05d110ee258e 10 * which provides customers with programming information regarding the
alexan_e 0:05d110ee258e 11 * products. This software is supplied "AS IS" without any warranties.
alexan_e 0:05d110ee258e 12 * NXP Semiconductors assumes no responsibility or liability for the
alexan_e 0:05d110ee258e 13 * use of the software, conveys no license or title under any patent,
alexan_e 0:05d110ee258e 14 * copyright, or mask work right to the product. NXP Semiconductors
alexan_e 0:05d110ee258e 15 * reserves the right to make changes in the software without
alexan_e 0:05d110ee258e 16 * notification. NXP Semiconductors also make no representation or
alexan_e 0:05d110ee258e 17 * warranty that such application will be suitable for the specified
alexan_e 0:05d110ee258e 18 * use without further testing or modification.
alexan_e 0:05d110ee258e 19 ****************************************************************************/
alexan_e 0:05d110ee258e 20 #ifndef __CLKCONFIG_H
alexan_e 0:05d110ee258e 21 #define __CLKCONFIG_H
alexan_e 0:05d110ee258e 22
alexan_e 0:05d110ee258e 23 #define SYSPLL_SRC_IRC_OSC 0
alexan_e 0:05d110ee258e 24 #define SYSPLL_SRC_SYS_OSC 1
alexan_e 0:05d110ee258e 25
alexan_e 0:05d110ee258e 26 #define MAINCLK_SRC_IRC_OSC 0
alexan_e 0:05d110ee258e 27 #define MAINCLK_SRC_SYSPLL_IN 1
alexan_e 0:05d110ee258e 28 #define MAINCLK_SRC_WDT_OSC 2
alexan_e 0:05d110ee258e 29 #define MAINCLK_SRC_SYS_PLL 3
alexan_e 0:05d110ee258e 30
alexan_e 0:05d110ee258e 31 #define WDTCLK_SRC_IRC_OSC 0
alexan_e 0:05d110ee258e 32 #define WDTCLK_SRC_WDT_OSC 1
alexan_e 0:05d110ee258e 33
alexan_e 0:05d110ee258e 34 #define CLKOUTCLK_SRC_IRC_OSC 0
alexan_e 0:05d110ee258e 35 #define CLKOUTCLK_SRC_SYS_OSC 1
alexan_e 0:05d110ee258e 36 #define CLKOUTCLK_SRC_WDT_OSC 2
alexan_e 0:05d110ee258e 37 #define CLKOUTCLK_SRC_MAIN_CLK 3
alexan_e 0:05d110ee258e 38
alexan_e 0:05d110ee258e 39 void WDT_CLK_Setup(uint32_t timer_num);
alexan_e 0:05d110ee258e 40 void CLKOUT_Setup(uint32_t timer_num);
alexan_e 0:05d110ee258e 41 #endif /* end __CLKCONFIG_H */
alexan_e 0:05d110ee258e 42 /*****************************************************************************
alexan_e 0:05d110ee258e 43 ** End Of File
alexan_e 0:05d110ee258e 44 ******************************************************************************/