fix for mbed lib issue 3 (i2c problem) see also https://mbed.org/users/mbed_official/code/mbed/issues/3 affected implementations: LPC812, LPC11U24, LPC1768, LPC2368, LPC4088
Fork of mbed-src by
vendor/NXP/LPC1768/cmsis/system_LPC17xx.h@13:bd9ff402dd42, 2013-08-05 (annotated)
- Committer:
- Shikaneo
- Date:
- Mon Aug 05 02:27:27 2013 +0000
- Revision:
- 13:bd9ff402dd42
- Parent:
- 10:3bc89ef62ce7
equipped timeout
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 10:3bc89ef62ce7 | 1 | /****************************************************************************** |
emilmont | 10:3bc89ef62ce7 | 2 | * @file: system_LPC17xx.h |
emilmont | 10:3bc89ef62ce7 | 3 | * @purpose: CMSIS Cortex-M3 Device Peripheral Access Layer Header File |
emilmont | 10:3bc89ef62ce7 | 4 | * for the NXP LPC17xx Device Series |
emilmont | 10:3bc89ef62ce7 | 5 | * @version: V1.02 |
emilmont | 10:3bc89ef62ce7 | 6 | * @date: 27. July 2009 |
emilmont | 10:3bc89ef62ce7 | 7 | *---------------------------------------------------------------------------- |
emilmont | 10:3bc89ef62ce7 | 8 | * |
emilmont | 10:3bc89ef62ce7 | 9 | * Copyright (C) 2009 ARM Limited. All rights reserved. |
emilmont | 10:3bc89ef62ce7 | 10 | * |
emilmont | 10:3bc89ef62ce7 | 11 | * ARM Limited (ARM) is supplying this software for use with Cortex-M3 |
emilmont | 10:3bc89ef62ce7 | 12 | * processor based microcontrollers. This file can be freely distributed |
emilmont | 10:3bc89ef62ce7 | 13 | * within development tools that are supporting such ARM based processors. |
emilmont | 10:3bc89ef62ce7 | 14 | * |
emilmont | 10:3bc89ef62ce7 | 15 | * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED |
emilmont | 10:3bc89ef62ce7 | 16 | * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF |
emilmont | 10:3bc89ef62ce7 | 17 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. |
emilmont | 10:3bc89ef62ce7 | 18 | * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR |
emilmont | 10:3bc89ef62ce7 | 19 | * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
emilmont | 10:3bc89ef62ce7 | 20 | * |
emilmont | 10:3bc89ef62ce7 | 21 | ******************************************************************************/ |
emilmont | 10:3bc89ef62ce7 | 22 | |
emilmont | 10:3bc89ef62ce7 | 23 | |
emilmont | 10:3bc89ef62ce7 | 24 | #ifndef __SYSTEM_LPC17xx_H |
emilmont | 10:3bc89ef62ce7 | 25 | #define __SYSTEM_LPC17xx_H |
emilmont | 10:3bc89ef62ce7 | 26 | |
emilmont | 10:3bc89ef62ce7 | 27 | #ifdef __cplusplus |
emilmont | 10:3bc89ef62ce7 | 28 | extern "C" { |
emilmont | 10:3bc89ef62ce7 | 29 | #endif |
emilmont | 10:3bc89ef62ce7 | 30 | |
emilmont | 10:3bc89ef62ce7 | 31 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ |
emilmont | 10:3bc89ef62ce7 | 32 | |
emilmont | 10:3bc89ef62ce7 | 33 | |
emilmont | 10:3bc89ef62ce7 | 34 | /** |
emilmont | 10:3bc89ef62ce7 | 35 | * Initialize the system |
emilmont | 10:3bc89ef62ce7 | 36 | * |
emilmont | 10:3bc89ef62ce7 | 37 | * @param none |
emilmont | 10:3bc89ef62ce7 | 38 | * @return none |
emilmont | 10:3bc89ef62ce7 | 39 | * |
emilmont | 10:3bc89ef62ce7 | 40 | * @brief Setup the microcontroller system. |
emilmont | 10:3bc89ef62ce7 | 41 | * Initialize the System and update the SystemCoreClock variable. |
emilmont | 10:3bc89ef62ce7 | 42 | */ |
emilmont | 10:3bc89ef62ce7 | 43 | extern void SystemInit (void); |
emilmont | 10:3bc89ef62ce7 | 44 | |
emilmont | 10:3bc89ef62ce7 | 45 | /** |
emilmont | 10:3bc89ef62ce7 | 46 | * Update SystemCoreClock variable |
emilmont | 10:3bc89ef62ce7 | 47 | * |
emilmont | 10:3bc89ef62ce7 | 48 | * @param none |
emilmont | 10:3bc89ef62ce7 | 49 | * @return none |
emilmont | 10:3bc89ef62ce7 | 50 | * |
emilmont | 10:3bc89ef62ce7 | 51 | * @brief Updates the SystemCoreClock with current core Clock |
emilmont | 10:3bc89ef62ce7 | 52 | * retrieved from cpu registers. |
emilmont | 10:3bc89ef62ce7 | 53 | */ |
emilmont | 10:3bc89ef62ce7 | 54 | extern void SystemCoreClockUpdate (void); |
emilmont | 10:3bc89ef62ce7 | 55 | |
emilmont | 10:3bc89ef62ce7 | 56 | #ifdef __cplusplus |
emilmont | 10:3bc89ef62ce7 | 57 | } |
emilmont | 10:3bc89ef62ce7 | 58 | #endif |
emilmont | 10:3bc89ef62ce7 | 59 | |
emilmont | 10:3bc89ef62ce7 | 60 | #endif /* __SYSTEM_LPC17xx_H */ |