Skip to content

Commit

Permalink
Apply MCUXpresso SDK 2.10.0 Update
Browse files Browse the repository at this point in the history
- Verified boards in scope:

  - evkbimxrt1050
  - evkbmimxrt1060
  - evkmcimx7ulp
  - evkmimx8mm
  - evkmimx8mn
  - evkmimx8mnddr3l
  - evkmimx8mp
  - evkmimx8mq
  - evkmimxrt1010
  - evkmimxrt1015
  - evkmimxrt1020
  - evkmimxrt1024
  - evkmimxrt1060
  - evkmimxrt1064
  - evkmimxrt1160
  - evkmimxrt1170
  - evkmimxrt595
  - evkmimxrt685
  - frdmk22f
  - frdmk32l2a4s
  - frdmk32l2b
  - frdmk32l3a6
  - frdmk64f
  - frdmk66f
  - frdmke02z40m
  - frdmke04z
  - frdmke06z
  - frdmke15z
  - frdmke16z
  - frdmkv11z
  - frdmkv31f
  - hvpkv11z75m
  - hvpkv31f120m
  - lpc845breakout
  - lpcxpresso51u68
  - lpcxpresso54628
  - lpcxpresso54s018
  - lpcxpresso54s018m
  - lpcxpresso55s06
  - lpcxpresso55s06cp
  - lpcxpresso55s16
  - lpcxpresso55s28
  - lpcxpresso55s69
  - lpcxpresso802
  - lpcxpresso804
  - lpcxpresso824max
  - lpcxpresso845max
  - twrkm34z50mv3
  - twrkm34z75m
  - twrkm35z75m

Signed-off-by: Susan Su <[email protected]>
  • Loading branch information
MCUSDK Jenkins CI authored and mcuxsusan committed Jul 27, 2021
1 parent 62f5041 commit d5bcaf2
Show file tree
Hide file tree
Showing 70,654 changed files with 3,929,166 additions and 379,935 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 3 additions & 7 deletions evkbimxrt1050/demo_apps/bubble_peripheral/armgcc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CROSS COMPILER SETTING
SET(CMAKE_SYSTEM_NAME Generic)
CMAKE_MINIMUM_REQUIRED (VERSION 3.1.1)
CMAKE_MINIMUM_REQUIRED (VERSION 3.10.0)

# THE VERSION NUMBER
SET (Tutorial_VERSION_MAJOR 1)
Expand Down Expand Up @@ -89,13 +89,9 @@ include(driver_igpio)

include(driver_xip_device)

include(driver_xip_board)
include(driver_xip_board_evkbimxrt1050)

include(CMSIS_Include_core_cm7)

include(CMSIS_Include_common)

include(CMSIS_Include_dsp)
include(CMSIS_Include_core_cm)

include(utilities_misc_utilities)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
** Compiler: GNU C Compiler
** Reference manual: IMXRT1050RM Rev.2.1, 12/2018 | IMXRT1050SRM Rev.2
** Version: rev. 1.0, 2018-09-21
** Build: b200110
** Build: b210227
**
** Abstract:
** Linker file for the GNU C Compiler
**
** Copyright 2016 Freescale Semiconductor, Inc.
** Copyright 2016-2020 NXP
** Copyright 2016-2021 NXP
** All rights reserved.
**
** SPDX-License-Identifier: BSD-3-Clause
Expand All @@ -39,6 +39,7 @@ MEMORY
m_ivt (RX) : ORIGIN = 0x60001000, LENGTH = 0x00001000
m_interrupts (RX) : ORIGIN = 0x60002000, LENGTH = 0x00000400
m_text (RX) : ORIGIN = 0x60002400, LENGTH = 0x03FFDC00
m_qacode (RX) : ORIGIN = 0x00000000, LENGTH = 0x00020000
m_data (RW) : ORIGIN = 0x20000000, LENGTH = 0x00020000
m_data2 (RW) : ORIGIN = 0x20200000, LENGTH = 0x00040000
}
Expand All @@ -62,9 +63,9 @@ SECTIONS
.ivt : AT(ivt_begin)
{
. = ALIGN(4);
KEEP(* (.boot_hdr.ivt)) /* ivt section */
KEEP(* (.boot_hdr.boot_data)) /* boot section */
KEEP(* (.boot_hdr.dcd_data)) /* dcd section */
KEEP(* (.boot_hdr.ivt)) /* ivt section */
KEEP(* (.boot_hdr.boot_data)) /* boot section */
KEEP(* (.boot_hdr.dcd_data)) /* dcd section */
. = ALIGN(4);
} > m_ivt

Expand Down Expand Up @@ -193,7 +194,19 @@ SECTIONS
. = ALIGN(4);
__data_end__ = .; /* define a global symbol at data end */
} > m_data
__NDATA_ROM = __DATA_ROM + (__data_end__ - __data_start__);

__ram_function_flash_start = __DATA_ROM + (__data_end__ - __data_start__); /* Symbol is used by startup for TCM data initialization */

.ram_function : AT(__ram_function_flash_start)
{
. = ALIGN(32);
__ram_function_start__ = .;
*(CodeQuickAccess)
. = ALIGN(128);
__ram_function_end__ = .;
} > m_qacode

__NDATA_ROM = __ram_function_flash_start + (__ram_function_end__ - __ram_function_start__);
.ncache.init : AT(__NDATA_ROM)
{
__noncachedata_start__ = .; /* create a global symbol at ncache data start */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
** Compiler: GNU C Compiler
** Reference manual: IMXRT1050RM Rev.2.1, 12/2018 | IMXRT1050SRM Rev.2
** Version: rev. 1.0, 2018-09-21
** Build: b200110
** Build: b210227
**
** Abstract:
** Linker file for the GNU C Compiler
**
** Copyright 2016 Freescale Semiconductor, Inc.
** Copyright 2016-2020 NXP
** Copyright 2016-2021 NXP
** All rights reserved.
**
** SPDX-License-Identifier: BSD-3-Clause
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
** Compiler: GNU C Compiler
** Reference manual: IMXRT1050RM Rev.2.1, 12/2018 | IMXRT1050SRM Rev.2
** Version: rev. 1.0, 2018-09-21
** Build: b200110
** Build: b210227
**
** Abstract:
** Linker file for the GNU C Compiler
**
** Copyright 2016 Freescale Semiconductor, Inc.
** Copyright 2016-2020 NXP
** Copyright 2016-2021 NXP
** All rights reserved.
**
** SPDX-License-Identifier: BSD-3-Clause
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ if exist Makefile (DEL /s /Q /F Makefile)
if exist cmake_install.cmake (DEL /s /Q /F cmake_install.cmake)
if exist CMakeCache.txt (DEL /s /Q /F CMakeCache.txt)
cmake -DCMAKE_TOOLCHAIN_FILE="../../../../../core/tools/cmake_toolchain_files/armgcc.cmake" -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=flexspi_nor_debug .
mingw32-make -j
mingw32-make -j 2> build_log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ if exist Makefile (DEL /s /Q /F Makefile)
if exist cmake_install.cmake (DEL /s /Q /F cmake_install.cmake)
if exist CMakeCache.txt (DEL /s /Q /F CMakeCache.txt)
cmake -DCMAKE_TOOLCHAIN_FILE="../../../../../core/tools/cmake_toolchain_files/armgcc.cmake" -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=flexspi_nor_release .
mingw32-make -j
mingw32-make -j 2> build_log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ if exist Makefile (DEL /s /Q /F Makefile)
if exist cmake_install.cmake (DEL /s /Q /F cmake_install.cmake)
if exist CMakeCache.txt (DEL /s /Q /F CMakeCache.txt)
cmake -DCMAKE_TOOLCHAIN_FILE="../../../../../core/tools/cmake_toolchain_files/armgcc.cmake" -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=release .
mingw32-make -j
mingw32-make -j 2> build_log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ if exist Makefile (DEL /s /Q /F Makefile)
if exist cmake_install.cmake (DEL /s /Q /F cmake_install.cmake)
if exist CMakeCache.txt (DEL /s /Q /F CMakeCache.txt)
cmake -DCMAKE_TOOLCHAIN_FILE="../../../../../core/tools/cmake_toolchain_files/armgcc.cmake" -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=sdram_debug .
mingw32-make -j
mingw32-make -j 2> build_log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ if exist Makefile (DEL /s /Q /F Makefile)
if exist cmake_install.cmake (DEL /s /Q /F cmake_install.cmake)
if exist CMakeCache.txt (DEL /s /Q /F CMakeCache.txt)
cmake -DCMAKE_TOOLCHAIN_FILE="../../../../../core/tools/cmake_toolchain_files/armgcc.cmake" -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=sdram_release .
mingw32-make -j
mingw32-make -j 2> build_log.txt
Loading

0 comments on commit d5bcaf2

Please sign in to comment.