source: rtems/c/src/lib/libbsp/arm/lpc24xx/include/system-clocks.h @ 7ae2775

4.104.115
Last change on this file since 7ae2775 was 7ae2775, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/17/09 at 13:53:04

ARM bsp maintenance

  • Property mode set to 100644
File size: 802 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup lpc24xx
5 *
6 * @brief System clocks.
7 */
8
9/*
10 * Copyright (c) 2008
11 * Embedded Brains GmbH
12 * Obere Lagerstr. 30
13 * D-82178 Puchheim
14 * Germany
15 * rtems@embedded-brains.de
16 *
17 * The license and distribution terms for this file may be found in the file
18 * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
19 */
20
21#ifndef LIBBSP_ARM_LPC24XX_SYSTEM_CLOCKS_H
22#define LIBBSP_ARM_LPC24XX_SYSTEM_CLOCKS_H
23
24#ifdef __cplusplus
25extern "C" {
26#endif /* __cplusplus */
27
28void lpc24xx_micro_seconds_delay( unsigned us);
29
30unsigned lpc24xx_pllclk( void);
31
32unsigned lpc24xx_cclk( void);
33
34void lpc24xx_set_pll( unsigned clksrc, unsigned nsel, unsigned msel, unsigned cclksel);
35
36#ifdef __cplusplus
37}
38#endif /* __cplusplus */
39
40#endif /* LIBBSP_ARM_LPC24XX_SYSTEM_CLOCKS_H */
Note: See TracBrowser for help on using the repository browser.