From 24b05205c0507429ffc91dfa1d46f3279f153128 Mon Sep 17 00:00:00 2001 From: hathach Date: Fri, 2 Mar 2018 14:40:59 +0700 Subject: [PATCH] add cmsis v4 to hw --- demos/device/device_os_none/.cproject | 1 + hw/cmsis/Include/arm_common_tables.h | 136 + hw/cmsis/Include/arm_const_structs.h | 79 + hw/cmsis/Include/arm_math.h | 7154 +++++++++++++++++ hw/cmsis/Include/cmsis_armcc.h | 734 ++ hw/cmsis/Include/cmsis_armcc_V6.h | 1800 +++++ hw/cmsis/Include/cmsis_gcc.h | 1373 ++++ hw/cmsis/Include/core_cm0.h | 798 ++ hw/cmsis/Include/core_cm0plus.h | 914 +++ hw/cmsis/Include/core_cm3.h | 1763 ++++ hw/cmsis/Include/core_cm4.h | 1937 +++++ hw/cmsis/Include/core_cm7.h | 2512 ++++++ hw/cmsis/Include/core_cmFunc.h | 87 + hw/cmsis/Include/core_cmInstr.h | 87 + hw/cmsis/Include/core_cmSimd.h | 96 + hw/cmsis/Include/core_sc000.h | 926 +++ hw/cmsis/Include/core_sc300.h | 1745 ++++ .../CMSIS_CORE_LPC11Uxx/inc/core_cm0.h | 682 -- .../CMSIS_CORE_LPC11Uxx/inc/core_cmFunc.h | 636 -- .../CMSIS_CORE_LPC11Uxx/inc/core_cmInstr.h | 688 -- .../CMSIS_CORE_LPC13Uxx/inc/core_cm3.h | 1627 ---- .../CMSIS_CORE_LPC13Uxx/inc/core_cmFunc.h | 636 -- .../CMSIS_CORE_LPC13Uxx/inc/core_cmInstr.h | 688 -- .../CMSIS_CORE_LPC17xx/inc/core_cm3.h | 1627 ---- .../CMSIS_CORE_LPC17xx/inc/core_cmFunc.h | 636 -- .../CMSIS_CORE_LPC17xx/inc/core_cmInstr.h | 688 -- .../CMSIS_LPC43xx_DriverLib/inc/core_cm4.h | 1772 ---- .../inc/core_cm4_simd.h | 673 -- .../CMSIS_LPC43xx_DriverLib/inc/core_cmFunc.h | 636 -- .../inc/core_cmInstr.h | 688 -- 30 files changed, 22142 insertions(+), 11677 deletions(-) create mode 100644 hw/cmsis/Include/arm_common_tables.h create mode 100644 hw/cmsis/Include/arm_const_structs.h create mode 100644 hw/cmsis/Include/arm_math.h create mode 100644 hw/cmsis/Include/cmsis_armcc.h create mode 100644 hw/cmsis/Include/cmsis_armcc_V6.h create mode 100644 hw/cmsis/Include/cmsis_gcc.h create mode 100644 hw/cmsis/Include/core_cm0.h create mode 100644 hw/cmsis/Include/core_cm0plus.h create mode 100644 hw/cmsis/Include/core_cm3.h create mode 100644 hw/cmsis/Include/core_cm4.h create mode 100644 hw/cmsis/Include/core_cm7.h create mode 100644 hw/cmsis/Include/core_cmFunc.h create mode 100644 hw/cmsis/Include/core_cmInstr.h create mode 100644 hw/cmsis/Include/core_cmSimd.h create mode 100644 hw/cmsis/Include/core_sc000.h create mode 100644 hw/cmsis/Include/core_sc300.h delete mode 100644 hw/mcu/nxp/lpc11uxx/CMSIS_CORE_LPC11Uxx/inc/core_cm0.h delete mode 100644 hw/mcu/nxp/lpc11uxx/CMSIS_CORE_LPC11Uxx/inc/core_cmFunc.h delete mode 100644 hw/mcu/nxp/lpc11uxx/CMSIS_CORE_LPC11Uxx/inc/core_cmInstr.h delete mode 100644 hw/mcu/nxp/lpc13uxx/CMSIS_CORE_LPC13Uxx/inc/core_cm3.h delete mode 100644 hw/mcu/nxp/lpc13uxx/CMSIS_CORE_LPC13Uxx/inc/core_cmFunc.h delete mode 100644 hw/mcu/nxp/lpc13uxx/CMSIS_CORE_LPC13Uxx/inc/core_cmInstr.h delete mode 100644 hw/mcu/nxp/lpc175x_6x/CMSIS_CORE_LPC17xx/inc/core_cm3.h delete mode 100644 hw/mcu/nxp/lpc175x_6x/CMSIS_CORE_LPC17xx/inc/core_cmFunc.h delete mode 100644 hw/mcu/nxp/lpc175x_6x/CMSIS_CORE_LPC17xx/inc/core_cmInstr.h delete mode 100644 hw/mcu/nxp/lpc43xx/CMSIS_LPC43xx_DriverLib/inc/core_cm4.h delete mode 100644 hw/mcu/nxp/lpc43xx/CMSIS_LPC43xx_DriverLib/inc/core_cm4_simd.h delete mode 100644 hw/mcu/nxp/lpc43xx/CMSIS_LPC43xx_DriverLib/inc/core_cmFunc.h delete mode 100644 hw/mcu/nxp/lpc43xx/CMSIS_LPC43xx_DriverLib/inc/core_cmInstr.h diff --git a/demos/device/device_os_none/.cproject b/demos/device/device_os_none/.cproject index fc813c2b9..526b1e674 100644 --- a/demos/device/device_os_none/.cproject +++ b/demos/device/device_os_none/.cproject @@ -231,6 +231,7 @@