Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of LG by
system_LPC17xx.h@0:8ad47e2b6f00, 2016-01-30 (annotated)
- Committer:
- igor_v
- Date:
- Sat Jan 30 13:00:39 2016 +0000
- Revision:
- 0:8ad47e2b6f00
2016_01_30;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| igor_v | 0:8ad47e2b6f00 | 1 | /****************************************************************************** |
| igor_v | 0:8ad47e2b6f00 | 2 | * @file: system_LPC17xx.h |
| igor_v | 0:8ad47e2b6f00 | 3 | * @purpose: CMSIS Cortex-M3 Device Peripheral Access Layer Header File |
| igor_v | 0:8ad47e2b6f00 | 4 | * for the NXP LPC17xx Device Series |
| igor_v | 0:8ad47e2b6f00 | 5 | * @version: V1.01 |
| igor_v | 0:8ad47e2b6f00 | 6 | * @date: 22. Jul. 2009 |
| igor_v | 0:8ad47e2b6f00 | 7 | *---------------------------------------------------------------------------- |
| igor_v | 0:8ad47e2b6f00 | 8 | * |
| igor_v | 0:8ad47e2b6f00 | 9 | * Copyright (C) 2009 ARM Limited. All rights reserved. |
| igor_v | 0:8ad47e2b6f00 | 10 | * |
| igor_v | 0:8ad47e2b6f00 | 11 | * ARM Limited (ARM) is supplying this software for use with Cortex-M3 |
| igor_v | 0:8ad47e2b6f00 | 12 | * processor based microcontrollers. This file can be freely distributed |
| igor_v | 0:8ad47e2b6f00 | 13 | * within development tools that are supporting such ARM based processors. |
| igor_v | 0:8ad47e2b6f00 | 14 | * |
| igor_v | 0:8ad47e2b6f00 | 15 | * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED |
| igor_v | 0:8ad47e2b6f00 | 16 | * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF |
| igor_v | 0:8ad47e2b6f00 | 17 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. |
| igor_v | 0:8ad47e2b6f00 | 18 | * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR |
| igor_v | 0:8ad47e2b6f00 | 19 | * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
| igor_v | 0:8ad47e2b6f00 | 20 | * |
| igor_v | 0:8ad47e2b6f00 | 21 | ******************************************************************************/ |
| igor_v | 0:8ad47e2b6f00 | 22 | |
| igor_v | 0:8ad47e2b6f00 | 23 | |
| igor_v | 0:8ad47e2b6f00 | 24 | #ifndef __SYSTEM_LPC17xx_H |
| igor_v | 0:8ad47e2b6f00 | 25 | #define __SYSTEM_LPC17xx_H |
| igor_v | 0:8ad47e2b6f00 | 26 | |
| igor_v | 0:8ad47e2b6f00 | 27 | #ifdef __cplusplus |
| igor_v | 0:8ad47e2b6f00 | 28 | extern "C" { |
| igor_v | 0:8ad47e2b6f00 | 29 | #endif |
| igor_v | 0:8ad47e2b6f00 | 30 | |
| igor_v | 0:8ad47e2b6f00 | 31 | extern uint32_t SystemFrequency; /*!< System Clock Frequency (Core Clock) */ |
| igor_v | 0:8ad47e2b6f00 | 32 | |
| igor_v | 0:8ad47e2b6f00 | 33 | |
| igor_v | 0:8ad47e2b6f00 | 34 | /** |
| igor_v | 0:8ad47e2b6f00 | 35 | * Initialize the system |
| igor_v | 0:8ad47e2b6f00 | 36 | * |
| igor_v | 0:8ad47e2b6f00 | 37 | * @param none |
| igor_v | 0:8ad47e2b6f00 | 38 | * @return none |
| igor_v | 0:8ad47e2b6f00 | 39 | * |
| igor_v | 0:8ad47e2b6f00 | 40 | * @brief Setup the microcontroller system. |
| igor_v | 0:8ad47e2b6f00 | 41 | * Initialize the System and update the SystemFrequency variable. |
| igor_v | 0:8ad47e2b6f00 | 42 | */ |
| igor_v | 0:8ad47e2b6f00 | 43 | extern void SystemInit (void); |
| igor_v | 0:8ad47e2b6f00 | 44 | |
| igor_v | 0:8ad47e2b6f00 | 45 | #ifdef __cplusplus |
| igor_v | 0:8ad47e2b6f00 | 46 | } |
| igor_v | 0:8ad47e2b6f00 | 47 | #endif |
| igor_v | 0:8ad47e2b6f00 | 48 | |
| igor_v | 0:8ad47e2b6f00 | 49 | #endif /* __SYSTEM_LPC17xx_H */ |
| igor_v | 0:8ad47e2b6f00 | 50 |
