Commit 64aa0bcb authored by robert-hh's avatar robert-hh

mimxrt: Enable ticks_cpu at boot time for NDEBUG builds only.

Otherwise, it get's in trouble with a Debugger. Reason to be found.
Also: Increase code segment to 2 MB for the MIMXRT1050_EVK build.
parent 74e8db0e
......@@ -19,7 +19,7 @@ ivt_size = 0x00001000;
interrupts_start = flash_start + 0x00002000;
interrupts_size = 0x00000400;
text_start = flash_start + 0x00002400;
vfs_start = flash_start + 0x00100000;
vfs_start = flash_start + 0x00200000;
text_size = ((vfs_start) - (text_start));
vfs_size = ((flash_end) - (vfs_start));
itcm_start = 0x00000000;
......
......@@ -56,7 +56,9 @@ void ticks_init(void) {
NVIC_EnableIRQ(GPTx_IRQn);
GPT_StartTimer(GPTx);
#ifdef NDEBUG
mp_hal_ticks_cpu_enable();
#endif
}
void GPTx_IRQHandler(void) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment