| Trying to enable SSC on RT1170 EVK with MCUXpresso. Ref: AN12879 Steps: 1. Base project: SDK Example evkmimxrt1170_semc_cm7 2. Using IDE to config SSC 3. Boot failed 4. Sometimes can boot normally (~ 1/50) Any step I missed? Regards Seen community.nxp.com |
Solved! Go to Solution.
Hi @Kan_Li
We have identified the issue. The code includes lvgl, and in the linker script, we are including "bss.ldt", which is taking up extra space.
After removing the "bss.ldt" file, the spread spectrum feature is enabled successfully.
However, a new issue has arisen. The boot-up time of my code has increased to 2-3 seconds, whereas previously it was instantaneous. This delay occurs only when spread spectrum is enabled. If I disable spread spectrum, the boot-up time returns to normal.
Please respond as soon as possible. Thank you for your patience
Hi @sajithdevidas ,
Did you try the demo from https://community.nxp.com/t5/i-MX-RT/i-MX-RT1170-Failed-to-boot-after-Spread-Spectrum-Clocking-is/m-... on RT1170 EVK? Does it work or still fail? Please kindly clarify.
Have a great day,
Kan
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
Yes, i tried,
But my code is working on SDRAM, and when i am trying to put the fsl_clock.c into the SRAM_OC1, but the fsl_clock.o is of 3.3MB, i don't know why it is this much big, and it is not fit in that region,
Hi @sajithdevidas ,
The demo would not take so many memory resource, did you change it according to your custom board? It just takes about 10k here for SRAM_OC1.
Is it possible to share your code for a review?
Have a great day,
Kan
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
Hi @Kan_Li
We have identified the issue. The code includes lvgl, and in the linker script, we are including "bss.ldt", which is taking up extra space.
After removing the "bss.ldt" file, the spread spectrum feature is enabled successfully.
However, a new issue has arisen. The boot-up time of my code has increased to 2-3 seconds, whereas previously it was instantaneous. This delay occurs only when spread spectrum is enabled. If I disable spread spectrum, the boot-up time returns to normal.
Please respond as soon as possible. Thank you for your patience
Hi @sajithdevidas ,
It is hard to advise without your code, so is it possible to tell us how you disable spread spectrum and how you enable it? Thanks for your patience!
Have a great day,
Kan
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
thank you @Kan_Li ,
the issue has been solved,