Skip to content

Commit

Permalink
[BSP][FRDM-MCX-C444] Adapter IAR 9.60 project
Browse files Browse the repository at this point in the history
  • Loading branch information
andeyqi authored Oct 31, 2024
1 parent 09bb076 commit 2552759
Show file tree
Hide file tree
Showing 6 changed files with 8,082 additions and 4 deletions.
5 changes: 2 additions & 3 deletions bsp/nxp/mcx/mcxc/frdm-mcxc444/board/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ extern int Image$$ARM_LIB_STACK$$ZI$$Base;
#define HEAP_END ((void*)&Image$$ARM_LIB_STACK$$ZI$$Base)
#elif defined(__ICCARM__)
#pragma section="HEAP"
#define HEAP_BEGIN (__segment_end("HEAP"))
extern void __RTT_HEAP_END;
#define HEAP_END (&__RTT_HEAP_END)
#define HEAP_BEGIN (__section_begin("HEAP"))
#define HEAP_END (__section_end("HEAP"))
#elif defined(__GNUC__)
extern int __HeapBase;
extern int __HeapLimit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if (isdefinedsymbol(__stack_size__)) {
if (isdefinedsymbol(__heap_size__)) {
define symbol __size_heap__ = __heap_size__;
} else {
define symbol __size_heap__ = 0x0400;
define symbol __size_heap__ = 0x4000;
}


Expand Down
Loading

0 comments on commit 2552759

Please sign in to comment.