Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.
Upstream: https://github.com/ARMmbed/DAPLink
source/hic_hal/nxp/lpc4322/system_LPC43xx.h@0:01f31e923fe2, 2020-04-07 (annotated)
- Committer:
- Pawel Zarembski
- Date:
- Tue Apr 07 12:55:42 2020 +0200
- Revision:
- 0:01f31e923fe2
hani: DAPLink with reset workaround
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Pawel Zarembski |
0:01f31e923fe2 | 1 | /********************************************************************** |
Pawel Zarembski |
0:01f31e923fe2 | 2 | * $Id$ system_LPC43xx.h 2011-06-02 |
Pawel Zarembski |
0:01f31e923fe2 | 3 | *//** |
Pawel Zarembski |
0:01f31e923fe2 | 4 | * @file system_LPC43xx.h |
Pawel Zarembski |
0:01f31e923fe2 | 5 | * @brief Cortex-M3 Device System Header File for NXP lpc43xx Series. |
Pawel Zarembski |
0:01f31e923fe2 | 6 | * @version 1.0 |
Pawel Zarembski |
0:01f31e923fe2 | 7 | * @date 02. June. 2011 |
Pawel Zarembski |
0:01f31e923fe2 | 8 | * @author NXP MCU SW Application Team |
Pawel Zarembski |
0:01f31e923fe2 | 9 | * |
Pawel Zarembski |
0:01f31e923fe2 | 10 | * Copyright(C) 2011, NXP Semiconductor |
Pawel Zarembski |
0:01f31e923fe2 | 11 | * All rights reserved. |
Pawel Zarembski |
0:01f31e923fe2 | 12 | * |
Pawel Zarembski |
0:01f31e923fe2 | 13 | *********************************************************************** |
Pawel Zarembski |
0:01f31e923fe2 | 14 | * Software that is described herein is for illustrative purposes only |
Pawel Zarembski |
0:01f31e923fe2 | 15 | * which provides customers with programming information regarding the |
Pawel Zarembski |
0:01f31e923fe2 | 16 | * products. This software is supplied "AS IS" without any warranties. |
Pawel Zarembski |
0:01f31e923fe2 | 17 | * NXP Semiconductors assumes no responsibility or liability for the |
Pawel Zarembski |
0:01f31e923fe2 | 18 | * use of the software, conveys no license or title under any patent, |
Pawel Zarembski |
0:01f31e923fe2 | 19 | * copyright, or mask work right to the product. NXP Semiconductors |
Pawel Zarembski |
0:01f31e923fe2 | 20 | * reserves the right to make changes in the software without |
Pawel Zarembski |
0:01f31e923fe2 | 21 | * notification. NXP Semiconductors also make no representation or |
Pawel Zarembski |
0:01f31e923fe2 | 22 | * warranty that such application will be suitable for the specified |
Pawel Zarembski |
0:01f31e923fe2 | 23 | * use without further testing or modification. |
Pawel Zarembski |
0:01f31e923fe2 | 24 | **********************************************************************/ |
Pawel Zarembski |
0:01f31e923fe2 | 25 | |
Pawel Zarembski |
0:01f31e923fe2 | 26 | #ifndef __SYSTEM_lpc43xx_H |
Pawel Zarembski |
0:01f31e923fe2 | 27 | #define __SYSTEM_lpc43xx_H |
Pawel Zarembski |
0:01f31e923fe2 | 28 | |
Pawel Zarembski |
0:01f31e923fe2 | 29 | #ifdef __cplusplus |
Pawel Zarembski |
0:01f31e923fe2 | 30 | extern "C" { |
Pawel Zarembski |
0:01f31e923fe2 | 31 | #endif |
Pawel Zarembski |
0:01f31e923fe2 | 32 | |
Pawel Zarembski |
0:01f31e923fe2 | 33 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ |
Pawel Zarembski |
0:01f31e923fe2 | 34 | |
Pawel Zarembski |
0:01f31e923fe2 | 35 | /** |
Pawel Zarembski |
0:01f31e923fe2 | 36 | * Initialize the system |
Pawel Zarembski |
0:01f31e923fe2 | 37 | * |
Pawel Zarembski |
0:01f31e923fe2 | 38 | * @param none |
Pawel Zarembski |
0:01f31e923fe2 | 39 | * @return none |
Pawel Zarembski |
0:01f31e923fe2 | 40 | * |
Pawel Zarembski |
0:01f31e923fe2 | 41 | * @brief Setup the microcontroller system. |
Pawel Zarembski |
0:01f31e923fe2 | 42 | * Initialize the System and update the SystemCoreClock variable. |
Pawel Zarembski |
0:01f31e923fe2 | 43 | */ |
Pawel Zarembski |
0:01f31e923fe2 | 44 | extern void SystemInit(void); |
Pawel Zarembski |
0:01f31e923fe2 | 45 | |
Pawel Zarembski |
0:01f31e923fe2 | 46 | #ifdef __cplusplus |
Pawel Zarembski |
0:01f31e923fe2 | 47 | } |
Pawel Zarembski |
0:01f31e923fe2 | 48 | #endif |
Pawel Zarembski |
0:01f31e923fe2 | 49 | |
Pawel Zarembski |
0:01f31e923fe2 | 50 | #endif /* __SYSTEM_lpc43xx_H */ |