Problems debugging iMXRT1011 project

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Problems debugging iMXRT1011 project

1,151 次查看
expertsleepers
Contributor III

I have a simple custom board based on an iMXRT1011 processor. I'm using MCUXpresso IDE v24.12 and a Segger J-Link Ultra+. I'm experienced with iMXRT development in general and the J-Link has worked fine for me on another project.

Everything started fine, but at some point, I lost the ability to debug my project. The code runs fine if I install it using the serial boot loader (via the Secure Provisioning tool), but if I flash it from the debugger it doesn't run.

It seems to crash somewhere before main(). Sometimes I can set a breakpoint in ResetISR() and step through. In these cases everything is fine if I keep single stepping, but it crashes if I let it run. Sometimes it goes straight to 0xdeadbeee and there's nothing to debugger can do.

As you can imagine this is very frustrating. Any suggestions would be gratefully received.

 

标签 (1)
0 项奖励
回复
10 回复数

1,134 次查看
diego_charles
NXP TechSupport
NXP TechSupport

Hi @expertsleepers 

Thank you for reaching out!  

Maybe it is the FCB on your IDE side. Have you reviewed that? Let me explain. 

When using the SEC tool, the SEC tool does not writes the image but writes a "minimalistic" FCB. When using the IDE the image contains the FCB (qspi_config if I remember well). Have checked that the FCB/qspi_config matches your image?

Best regards, 

Diego

 

0 项奖励
回复

1,105 次查看
expertsleepers
Contributor III

I'm using the attached files to configure the flash. They're copied from an SDK example, and I've checked that they're identical with the files on my working project.

The flash IC is the same on both boards, a Winbond W25Q64JVXGIQ.

Do these files define the "FCB" that you're referring to?

 

1,066 次查看
diego_charles
NXP TechSupport
NXP TechSupport

Hi @expertsleepers 

Thank you for your clarification, yes I was referring to those files as the FCB. 

What if the problem lies on the current application settings?  I want to differentiate if this is problem lies on flash settings, application settings or IDE. 

what is the result if you try to run hello world demo? using your same FCB that already works. 

Could you provide more details about your project? 

Best regards, 

Diego

0 项奖励
回复

1,061 次查看
expertsleepers
Contributor III
It's a very simple board that I was using to test a few peripherals. Basically it's the MCU, a QSPI flash for XIP, a few SPI and I2C peripherals, and a USB port.

Perhaps I didn't make it clear that the project all worked fine and ran OK under the debugger until it reached a certain size. I was working on this quite happily for a couple of days until the debugger suddenly began to fail.

The IDE itself continues to work fine for my other project, so I'm not concerned about the IDE itself.
0 项奖励
回复

967 次查看
diego_charles
NXP TechSupport
NXP TechSupport

Hi @expertsleepers 

Thank you for your patience and more info! 

Do you mean that If you commit back to a previous stage of your project, does debug starts to work better?

I wonder how  I could replicate this problem on my side. Does this problem repeats by importing the project on other workspace or PC? 

All the best, 

Diego

 

0 项奖励
回复

925 次查看
expertsleepers
Contributor III

Do you mean that If you commit back to a previous stage of your project, does debug starts to work better?

Yes. However, after reverting to an old version, I have to flash the board once using the Secure Provisioning tool before debugging becomes reliable again. From then on, I can flash from the IDE as usual.

If I then go back to my latest code, I can debug successfully once, but then subsequent attempts fail.

Does this problem repeats by importing the project on other workspace or PC? 

I installed the IDE v25.6 on a fresh machine with no previous install, copied over the project, built and attempted to debug, and the result was the same.

 

0 项奖励
回复

901 次查看
diego_charles
NXP TechSupport
NXP TechSupport

Hi @expertsleepers 

Thank you for your clarification! 

You mentioned earlier, this:  Sometimes it goes straight to 0xdeadbeee and there's nothing to debugger can do.

If I understand well this deadbee problem only occurs with the debugger, and if you boot latest SW,  without the debugger the does it works well rigth?

If you debug latest app using Segger's J-Link commander, letting the IDE aside,  do you see any problems? I refer to using the go, and halt operations once the debugger is connected. 

Could you share and idea of the  changes on your  latest SW version?  Do a step by step debug, while you monitor program counter, and heap an SRAM. I do not know if you are using an RTOS.  Check for any jumps to invalid addresses, for example from flash to SRAM,  and viceversa. 

Best regards, 

Diego

 

0 项奖励
回复

212 次查看
expertsleepers
Contributor III

To rule out issues with my custom board, I obtained an MIMXRT1010 EVK. The behaviour is the same on the EVK board.

 

0 项奖励
回复

717 次查看
expertsleepers
Contributor III

Further odd behaviour I've noticed this morning.

I set a breakpoint before the call to SystemInitHook(). You can see the disassembly of that function in the attached image.

Before the call, the SP is at 0x20207ff8 which is expected, having followed through the code. The call to SystemInitHook() is

bl 0x6001220c

If I step into the function in C, the debugger stops at 0x60012210 and the SP is still 0x20207ff8. The SP is also 0x20207ff8 when the function returns, which is as expected.

If I instead step into the function in instruction stepping mode, it executes the push instruction at 0x6001220c, reducing the SP to 0x20207ff4. So the SP is wrong when the function exits and subsequent code crashes.

Can you think what might cause this difference of behaviour? And is that SystemInitHook() correct? To have a push but no pop?

 

0 项奖励
回复

818 次查看
expertsleepers
Contributor III

If I flash the application with SEC, it runs fine. If I connect with J-Link commander, I can halt and go successfully.

In the IDE, today I can set a breakpoint at ResetISR(). If I step over SystemInit(), it crashes. If I step into SystemInit(), step through the function and then step over SystemInitHook(), it crashes. If I do the same and step into SystemInitHook(), it does not crash. This is what I mean when I say the behaviour depends on whether the debugger is stepping over or into the code.

An example of the stack when it crashes:
 
Thread #1 57005 (Suspended : Signal : SIGTRAP:Trace/breakpoint trap)
_vfprintf_r() at 0x600134a4
0x0

 

So it looks like it's jumping to 0x0, but only when the code is freely running, not when stepping in the debugger. There is no code at 0x0 - the ITC is not being used.

Just to repeat, this is before main(), long before any RTOS or similar is invoked. It's crashing in the initial startup code.

 

0 项奖励
回复
%3CLINGO-SUB%20id%3D%22lingo-sub-2197495%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E8%B0%83%E8%AF%95%20iMXRT1011%20%E9%A1%B9%E7%9B%AE%E6%97%B6%E9%81%87%E5%88%B0%E7%9A%84%E9%97%AE%E9%A2%98%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2197495%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%88%91%E6%9C%89%E4%B8%80%E4%B8%AA%E5%9F%BA%E4%BA%8E%20imxRT1011%20%E5%A4%84%E7%90%86%E5%99%A8%E7%9A%84%E7%AE%80%E5%8D%95%E5%AE%9A%E5%88%B6%E6%9D%BF%E3%80%82%E6%88%91%E4%BD%BF%E7%94%A8%E7%9A%84%E6%98%AF%3CSPAN%3EMCUXpresso%20IDE%20v24.12%20%E5%92%8C%20Segger%20J-Link%20Ultra%2B%E3%80%82%E6%88%91%E5%AF%B9%20iMXRT%20%E5%BC%80%E5%8F%91%E5%BE%88%E6%9C%89%E7%BB%8F%E9%AA%8C%EF%BC%8CJ-Link%20%E5%9C%A8%E6%88%91%E7%9A%84%E5%8F%A6%E4%B8%80%E4%B8%AA%E9%A1%B9%E7%9B%AE%E4%B8%AD%E8%BF%90%E8%A1%8C%E8%89%AF%E5%A5%BD%E3%80%82%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%E4%B8%80%E5%88%87%E5%BC%80%E5%A7%8B%E9%83%BD%E5%BE%88%E9%A1%BA%E5%88%A9%EF%BC%8C%E4%BD%86%E4%B8%8D%E7%9F%A5%E4%BD%95%E6%97%B6%EF%BC%8C%E6%88%91%E5%A4%B1%E5%8E%BB%E4%BA%86%E8%B0%83%E8%AF%95%E9%A1%B9%E7%9B%AE%E7%9A%84%E8%83%BD%E5%8A%9B%E3%80%82%E5%A6%82%E6%9E%9C%E6%88%91%E4%BD%BF%E7%94%A8%E4%B8%B2%E8%A1%8C%E5%90%AF%E5%8A%A8%E5%8A%A0%E8%BD%BD%E5%99%A8%EF%BC%88%E9%80%9A%E8%BF%87%E5%AE%89%E5%85%A8%E9%85%8D%E7%BD%AE%E5%B7%A5%E5%85%B7%EF%BC%89%E5%AE%89%E8%A3%85%E4%BB%A3%E7%A0%81%EF%BC%8C%E5%88%99%E4%BB%A3%E7%A0%81%E5%8F%AF%E4%BB%A5%E6%AD%A3%E5%B8%B8%E8%BF%90%E8%A1%8C%EF%BC%8C%E4%BD%86%E6%98%AF%E5%A6%82%E6%9E%9C%E6%88%91%E4%BB%8E%E8%B0%83%E8%AF%95%E5%99%A8%E4%B8%AD%E5%88%B7%E6%96%B0%E5%AE%83%EF%BC%8C%E5%AE%83%E5%B0%B1%E6%97%A0%E6%B3%95%E8%BF%90%E8%A1%8C%E3%80%82%3C%2FP%3E%3CP%3E%E5%AE%83%E4%BC%BC%E4%B9%8E%E5%9C%A8%20main()%20%E4%B9%8B%E5%89%8D%E7%9A%84%E6%9F%90%E4%B8%AA%E5%9C%B0%E6%96%B9%E5%B4%A9%E6%BA%83%E4%BA%86%E3%80%82%E6%9C%89%E6%97%B6%EF%BC%8C%E6%88%91%E5%8F%AF%E4%BB%A5%E5%9C%A8%3CSPAN%3EResetISR()%3C%2FSPAN%3E%E4%B8%AD%E8%AE%BE%E7%BD%AE%E4%B8%80%E4%B8%AA%E6%96%AD%E7%82%B9%E5%B9%B6%E6%AD%A5%E8%BF%9B%E3%80%82%E5%9C%A8%E8%BF%99%E7%A7%8D%E6%83%85%E5%86%B5%E4%B8%8B%EF%BC%8C%E5%A6%82%E6%9E%9C%E6%88%91%E4%BF%9D%E6%8C%81%E5%8D%95%E6%AD%A5%E8%BF%90%E8%A1%8C%EF%BC%8C%E4%B8%80%E5%88%87%E6%AD%A3%E5%B8%B8%EF%BC%8C%E4%BD%86%E5%A6%82%E6%9E%9C%E6%88%91%E8%AE%A9%E5%AE%83%E8%BF%90%E8%A1%8C%EF%BC%8C%E5%AE%83%E5%B0%B1%E4%BC%9A%E5%B4%A9%E6%BA%83%E3%80%82%E6%9C%89%E6%97%B6%E4%BC%9A%E7%9B%B4%E6%8E%A5%E8%BF%9B%E5%85%A5%200xdeadbeee%EF%BC%8C%E8%B0%83%E8%AF%95%E5%99%A8%E6%97%A0%E8%83%BD%E4%B8%BA%E5%8A%9B%E3%80%82%3C%2FP%3E%3CP%3E%E5%8F%AF%E6%83%B3%E8%80%8C%E7%9F%A5%EF%BC%8C%E8%BF%99%E9%9D%9E%E5%B8%B8%E4%BB%A4%E4%BA%BA%E6%B2%AE%E4%B8%A7%E3%80%82%E5%A6%82%E6%9C%89%E4%BB%BB%E4%BD%95%E5%BB%BA%E8%AE%AE%EF%BC%8C%E6%88%91%E4%BB%AC%E5%B0%86%E4%B8%8D%E8%83%9C%E6%84%9F%E6%BF%80%E3%80%82%3C%2FP%3E%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-LABS%20id%3D%22lingo-labs-2197495%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CLINGO-LABEL%3Ei.MX%20RT101x%3C%2FLINGO-LABEL%3E%3C%2FLINGO-LABS%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2204484%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2204484%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BB%8A%E5%A4%A9%E6%97%A9%E4%B8%8A%E6%88%91%E5%8F%88%E5%8F%91%E7%8E%B0%E4%BA%86%E4%B8%80%E4%BA%9B%E5%A5%87%E6%80%AA%E7%9A%84%E8%A1%8C%E4%B8%BA%E3%80%82%3C%2FP%3E%3CP%3E%E6%88%91%E5%9C%A8%E8%B0%83%E7%94%A8%3CSPAN%3ESystemInitHook()%3C%2FSPAN%3E%E4%B9%8B%E5%89%8D%E8%AE%BE%E7%BD%AE%E4%BA%86%E4%B8%80%E4%B8%AA%E6%96%AD%E7%82%B9%E3%80%82%E4%BD%A0%E5%8F%AF%E4%BB%A5%E5%9C%A8%E9%99%84%E5%9B%BE%E4%B8%AD%E7%9C%8B%E5%88%B0%E8%AF%A5%E5%87%BD%E6%95%B0%E7%9A%84%E5%8F%8D%E6%B1%87%E7%BC%96%E8%BF%87%E7%A8%8B%E3%80%82%3C%2FP%3E%3CP%3E%3CSPAN%3E%E5%9C%A8%E8%B0%83%E7%94%A8%E4%B9%8B%E5%89%8D%EF%BC%8CSP%20%E4%BD%8D%E4%BA%8E%200x20207ff8%EF%BC%8C%E8%BF%99%E5%9C%A8%E6%88%91%E4%BB%AC%E7%9A%84%E6%84%8F%E6%96%99%E4%B9%8B%E4%B8%AD%E3%80%82%E5%AF%B9%20SystemInitHook()%20%E7%9A%84%E8%B0%83%E7%94%A8%E6%98%AF%3C%2FSPAN%3E%3C%2FP%3E%3CP%3Ebl%200x6001220c%3C%2FP%3E%3CP%3E%E5%A6%82%E6%9E%9C%E6%88%91%E7%94%A8%20C%20%E8%AF%AD%E8%A8%80%E8%BF%9B%E5%85%A5%E5%87%BD%E6%95%B0%EF%BC%8C%E8%B0%83%E8%AF%95%E5%99%A8%E4%BC%9A%E5%9C%A8%200x60012210%20%E5%A4%84%E5%81%9C%E6%AD%A2%EF%BC%8CSP%20%E4%BB%8D%E7%84%B6%E6%98%AF%3CSPAN%3E0x20207ff8%E3%80%82%E5%87%BD%E6%95%B0%E8%BF%94%E5%9B%9E%E6%97%B6%EF%BC%8CSP%20%E4%B9%9F%E6%98%AF%200x20207ff8%EF%BC%8C%E7%AC%A6%E5%90%88%E9%A2%84%E6%9C%9F%E3%80%82%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%3E%E5%A6%82%E6%9E%9C%E6%94%B9%E7%94%A8%E6%8C%87%E4%BB%A4%E6%AD%A5%E8%BF%9B%E6%A8%A1%E5%BC%8F%E8%BF%9B%E5%85%A5%E5%87%BD%E6%95%B0%EF%BC%8C%E5%88%99%E4%BC%9A%E6%89%A7%E8%A1%8C%200x6001220c%20%E5%A4%84%E7%9A%84%E6%8E%A8%E9%80%81%E6%8C%87%E4%BB%A4%EF%BC%8C%E5%B0%86%20SP%20%E9%99%8D%E8%87%B3%200x20207ff4%E3%80%82%E5%9B%A0%E6%AD%A4%EF%BC%8C%E5%BD%93%E5%87%BD%E6%95%B0%E9%80%80%E5%87%BA%E5%92%8C%E5%90%8E%E7%BB%AD%E4%BB%A3%E7%A0%81%E5%B4%A9%E6%BA%83%E6%97%B6%EF%BC%8CSP%20%E6%98%AF%E9%94%99%E8%AF%AF%E7%9A%84%E3%80%82%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%3E%E4%BD%A0%E8%83%BD%E6%83%B3%E5%87%BA%E9%80%A0%E6%88%90%E8%BF%99%E7%A7%8D%E8%A1%8C%E4%B8%BA%E5%B7%AE%E5%BC%82%E7%9A%84%E5%8E%9F%E5%9B%A0%E5%90%97%EF%BC%9FSystemInitHook()%20%E6%AD%A3%E7%A1%AE%E5%90%97%EF%BC%9F%E6%9C%89%E6%8E%A8%E5%8A%9B%E5%8D%B4%E6%B2%A1%E6%9C%89%E5%BC%B9%E5%8A%9B%EF%BC%9F%3C%2FSPAN%3E%3C%2FP%3E%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2203589%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2203589%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E5%A6%82%E6%9E%9C%E6%88%91%E7%94%A8%E9%AB%98%E6%95%88%E5%AF%86%E7%A0%81%E5%AD%A6%E6%A0%87%E5%87%86(SEC)%E5%88%B7%E6%96%B0%E5%BA%94%E7%94%A8%E7%A8%8B%E5%BA%8F%EF%BC%8C%E5%AE%83%E5%8F%AF%E4%BB%A5%E6%AD%A3%E5%B8%B8%E8%BF%90%E8%A1%8C%E3%80%82%E5%A6%82%E6%9E%9C%E6%88%91%E8%BF%9E%E6%8E%A5J-Link%20Commander%EF%BC%8C%E5%B0%B1%E5%8F%AF%E4%BB%A5%E6%88%90%E5%8A%9F%E5%81%9C%E6%AD%A2%E5%92%8C%E8%B5%B7%E9%A3%9E%E3%80%82%3C%2FP%3E%3CP%3E%E5%9C%A8%20IDE%20%E4%B8%AD%EF%BC%8C%E6%88%91%E4%BB%8A%E5%A4%A9%E5%8F%AF%E4%BB%A5%E5%9C%A8%3CSPAN%3EResetISR()%20%E5%87%BD%E6%95%B0%E5%A4%84%E8%AE%BE%E7%BD%AE%E6%96%AD%E7%82%B9%E3%80%82%E5%A6%82%E6%9E%9C%E6%88%91%E5%8D%95%E6%AD%A5%E6%89%A7%E8%A1%8C%20SystemInit()%20%E5%87%BD%E6%95%B0%EF%BC%8C%E7%A8%8B%E5%BA%8F%E4%BC%9A%E5%B4%A9%E6%BA%83%E3%80%82%E5%A6%82%E6%9E%9C%E6%88%91%E5%8D%95%E6%AD%A5%E8%BF%9B%E5%85%A5%20SystemInit()%20%E5%87%BD%E6%95%B0%EF%BC%8C%E6%89%A7%E8%A1%8C%E5%AE%8C%E8%AF%A5%E5%87%BD%E6%95%B0%E5%90%8E%E5%86%8D%E5%8D%95%E6%AD%A5%E6%89%A7%E8%A1%8C%20SystemInitHook()%20%E5%87%BD%E6%95%B0%EF%BC%8C%E7%A8%8B%E5%BA%8F%E4%B9%9F%E4%BC%9A%E5%B4%A9%E6%BA%83%E3%80%82%E5%A6%82%E6%9E%9C%E6%88%91%E6%89%A7%E8%A1%8C%E5%90%8C%E6%A0%B7%E7%9A%84%E6%93%8D%E4%BD%9C%EF%BC%8C%E7%9B%B4%E6%8E%A5%E5%8D%95%E6%AD%A5%E6%89%A7%E8%A1%8C%20SystemInitHook()%20%E5%87%BD%E6%95%B0%EF%BC%8C%E7%A8%8B%E5%BA%8F%E5%B0%B1%E4%B8%8D%E4%BC%9A%E5%B4%A9%E6%BA%83%E3%80%82%3C%2FSPAN%3E%3CSPAN%3E%E8%BF%99%E5%B0%B1%E6%98%AF%E6%88%91%E6%89%80%E8%AF%B4%E7%9A%84%EF%BC%8C%3C%2FSPAN%3E%3CSPAN%3E%E7%A8%8B%E5%BA%8F%E8%A1%8C%E4%B8%BA%E5%8F%96%E5%86%B3%E4%BA%8E%E8%B0%83%E8%AF%95%E5%99%A8%E6%98%AF%E5%8D%95%E6%AD%A5%E6%89%A7%E8%A1%8C%E8%BF%98%E6%98%AF%E5%8D%95%E6%AD%A5%E6%89%A7%E8%A1%8C%E3%80%82%3C%2FSPAN%3E%3C%2FP%3E%3CDIV%3E%E5%A0%86%E6%A0%88%E5%B4%A9%E6%BA%83%E6%97%B6%E7%9A%84%E7%A4%BA%E4%BE%8B%EF%BC%9A%3C%2FDIV%3E%3CDIV%3E%26nbsp%3B%3C%2FDIV%3E%3CDIV%3E%E7%BA%BF%E7%A8%8B%20%231%2057005%EF%BC%88%E6%9A%82%E5%81%9C%EF%BC%9A%E4%BF%A1%E5%8F%B7%EF%BC%9ASIGTRAP%3A%E8%B7%9F%E8%B8%AA%2F%E6%96%AD%E7%82%B9%E9%99%B7%E9%98%B1%EF%BC%89%3C%2FDIV%3E%3CDIV%3E_vfprintf_r()%20%E5%9C%A8%200x600134a4%3C%2FDIV%3E%3CDIV%3E0x0%3C%2FDIV%3E%3CBR%20%2F%3E%3CP%3E%E6%89%80%E4%BB%A5%E7%9C%8B%E8%B5%B7%E6%9D%A5%E5%AE%83%E5%A5%BD%E5%83%8F%E8%B7%B3%E5%88%B0%E4%BA%86%200x0%EF%BC%8C%E4%BD%86%E5%8F%AA%E6%9C%89%E5%9C%A8%E4%BB%A3%E7%A0%81%E8%87%AA%E7%94%B1%E8%BF%90%E8%A1%8C%E6%97%B6%E6%89%8D%E4%BC%9A%E8%BF%99%E6%A0%B7%EF%BC%8C%E5%9C%A8%E8%B0%83%E8%AF%95%E5%99%A8%E4%B8%AD%E5%8D%95%E6%AD%A5%E6%89%A7%E8%A1%8C%E6%97%B6%E4%B8%8D%E4%BC%9A%E8%BF%99%E6%A0%B7%E3%80%820x0%20%E5%A4%84%E6%B2%A1%E6%9C%89%E4%BB%A3%E7%A0%81%20-%20ITC%20%E6%9C%AA%E4%BD%BF%E7%94%A8%E3%80%82%3C%2FP%3E%3CP%3E%E9%87%8D%E5%A4%8D%E4%B8%80%E9%81%8D%EF%BC%8C%E8%BF%99%E6%98%AF%E5%9C%A8%20main()%20%E4%B9%8B%E5%89%8D%EF%BC%8C%E8%BF%9C%E5%9C%A8%E8%B0%83%E7%94%A8%E4%BB%BB%E4%BD%95%20RTOS%20%E6%88%96%E7%B1%BB%E4%BC%BC%E7%B3%BB%E7%BB%9F%E4%B9%8B%E5%89%8D%E3%80%82%E5%AE%83%E5%9C%A8%E5%88%9D%E5%A7%8B%E5%90%AF%E5%8A%A8%E4%BB%A3%E7%A0%81%E4%B8%AD%E5%B4%A9%E6%BA%83%E4%BA%86%E3%80%82%3C%2FP%3E%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2202905%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2202905%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%82%A8%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F213907%22%20target%3D%22_blank%22%3E%40expertsleepers%3C%2FA%3E%3C%2FP%3E%0A%3CP%3E%E8%B0%A2%E8%B0%A2%E6%82%A8%E7%9A%84%E6%BE%84%E6%B8%85%EF%BC%81%20%3C%2FP%3E%0A%3CP%3E%E4%BD%A0%E5%88%9A%E6%89%8D%E6%8F%90%E5%88%B0%E4%BA%86%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%EF%BC%9A%20%3CSPAN%3E%20%E6%9C%89%E6%97%B6%E4%BC%9A%E7%9B%B4%E6%8E%A5%E8%BF%9B%E5%85%A5%200xdeadbeee%EF%BC%8C%E8%B0%83%E8%AF%95%E5%99%A8%E6%97%A0%E8%83%BD%E4%B8%BA%E5%8A%9B%E3%80%82%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%3E%E5%A6%82%E6%9E%9C%E6%88%91%E7%90%86%E8%A7%A3%E5%BE%97%E5%BE%88%E6%B8%85%E6%A5%9A%E8%BF%99%E4%B8%AA%20deadbee%20%E9%97%AE%E9%A2%98%E5%8F%AA%E4%BC%9A%E5%87%BA%E7%8E%B0%E5%9C%A8%E8%B0%83%E8%AF%95%E5%99%A8%E4%B8%8A%EF%BC%8C%E5%A6%82%E6%9E%9C%E4%BD%A0%E5%90%AF%E5%8A%A8%E6%9C%80%E6%96%B0%E7%9A%84%E8%BD%AF%E4%BB%B6%EF%BC%8C%E6%B2%A1%E6%9C%89%E8%B0%83%E8%AF%95%E5%99%A8%EF%BC%8C%E5%AE%83%E8%83%BD%E6%AD%A3%E5%B8%B8%E5%B7%A5%E4%BD%9C%E5%AF%B9%E5%90%97%EF%BC%9F%20%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%3E%E5%A6%82%E6%9E%9C%E4%BD%BF%E7%94%A8%20Segger%20%E7%9A%84%20J-Link%20%E6%8C%87%E4%BB%A4%E5%99%A8%E8%B0%83%E8%AF%95%E6%9C%80%E6%96%B0%E7%A8%8B%E5%BA%8F%EF%BC%8C%E6%8A%9B%E5%BC%80%E9%9B%86%E6%88%90%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83%E4%B8%8D%E8%B0%88%EF%BC%8C%E6%82%A8%E4%BC%9A%E5%8F%91%E7%8E%B0%E4%BB%BB%E4%BD%95%E9%97%AE%E9%A2%98%E5%90%97%EF%BC%9F%E6%88%91%E6%8C%87%E7%9A%84%E6%98%AF%E8%BF%9E%E6%8E%A5%E8%B0%83%E8%AF%95%E5%99%A8%E5%90%8E%E4%BD%BF%E7%94%A8%20go%20%E5%92%8C%20halt%20%E6%93%8D%E4%BD%9C%E3%80%82%20%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%3E%E6%82%A8%E8%83%BD%E5%88%86%E4%BA%AB%E4%B8%80%E4%B8%8B%E6%9C%80%E6%96%B0%20SW%20%E7%89%88%E6%9C%AC%E7%9A%84%E5%8F%98%E5%8C%96%E5%90%97%EF%BC%9F%20%E5%9C%A8%E7%9B%91%E6%B5%8B%E7%A8%8B%E5%BA%8F%E8%AE%A1%E6%95%B0%E5%99%A8%E7%9A%84%E5%90%8C%E6%97%B6%E8%BF%9B%E8%A1%8C%E5%88%86%E6%AD%A5%E8%B0%83%E8%AF%95%EF%BC%8C%E5%B9%B6%E5%A0%86%E6%94%BE%20SRAM%E3%80%82%E6%88%91%E4%B8%8D%E7%9F%A5%E9%81%93%E6%82%A8%E4%BD%BF%E7%94%A8%E7%9A%84%E6%98%AF%E5%90%A6%E6%98%AF%20RTOS%E3%80%82%20%E6%A3%80%E6%9F%A5%E6%98%AF%E5%90%A6%E6%9C%89%E8%B7%B3%E8%BD%AC%E5%88%B0%E6%97%A0%E6%95%88%E5%9C%B0%E5%9D%80%E7%9A%84%E6%83%85%E5%86%B5%EF%BC%8C%E4%BE%8B%E5%A6%82%E4%BB%8E%E9%97%AA%E5%AD%98%E8%B7%B3%E8%BD%AC%E5%88%B0%20SRAM%EF%BC%8C%E5%8F%8D%E4%B9%8B%E4%BA%A6%E7%84%B6%E3%80%82%20%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%3E%E8%87%B4%E4%BB%A5%E6%9C%80%E5%B4%87%E9%AB%98%E7%9A%84%E6%95%AC%E6%84%8F%20%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%3E%E8%BF%AA%E4%BA%9A%E6%88%88%3C%2FSPAN%3E%3C%2FP%3E%0A%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2202626%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2202626%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%26gt%3B%20%3CSPAN%3E%E6%82%A8%E7%9A%84%E6%84%8F%E6%80%9D%E6%98%AF%EF%BC%8C%E5%A6%82%E6%9E%9C%E6%82%A8%E6%8F%90%E4%BA%A4%E5%9B%9E%E9%A1%B9%E7%9B%AE%E7%9A%84%E5%89%8D%E4%B8%80%E9%98%B6%E6%AE%B5%EF%BC%8C%E8%B0%83%E8%AF%95%E6%98%AF%E5%90%A6%E4%BC%9A%E5%BC%80%E5%A7%8B%E6%9B%B4%E5%A5%BD%E5%9C%B0%E5%B7%A5%E4%BD%9C%EF%BC%9F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%E6%98%AF%E7%9A%84%E3%80%82%E4%BD%86%E6%98%AF%EF%BC%8C%E5%9C%A8%E6%81%A2%E5%A4%8D%E5%88%B0%E6%97%A7%E7%89%88%E6%9C%AC%E4%B9%8B%E5%90%8E%EF%BC%8C%E6%88%91%E5%BF%85%E9%A1%BB%E4%BD%BF%E7%94%A8%E5%AE%89%E5%85%A8%E9%85%8D%E7%BD%AE%E5%B7%A5%E5%85%B7%E5%88%B7%E6%96%B0%E4%B8%BB%E6%9D%BF%E4%B8%80%E6%AC%A1%EF%BC%8C%E7%84%B6%E5%90%8E%E8%B0%83%E8%AF%95%E6%89%8D%E4%BC%9A%E5%8F%98%E5%BE%97%E5%8F%AF%E9%9D%A0%E3%80%82%E4%BB%8E%E9%82%A3%E4%BB%A5%E5%90%8E%EF%BC%8C%E6%88%91%E5%B0%B1%E5%8F%AF%E4%BB%A5%E5%83%8F%E5%BE%80%E5%B8%B8%E4%B8%80%E6%A0%B7%E4%BB%8E%20IDE%20%E9%97%AA%E5%AD%98%E4%BA%86%E3%80%82%3C%2FP%3E%3CP%3E%E5%A6%82%E6%9E%9C%E6%88%91%E5%9B%9E%E5%88%B0%E6%9C%80%E6%96%B0%E7%9A%84%E4%BB%A3%E7%A0%81%EF%BC%8C%E6%88%91%E5%8F%AF%E4%BB%A5%E6%88%90%E5%8A%9F%E8%B0%83%E8%AF%95%E4%B8%80%E6%AC%A1%EF%BC%8C%E4%BD%86%E9%9A%8F%E5%90%8E%E7%9A%84%E5%B0%9D%E8%AF%95%E9%83%BD%E5%A4%B1%E8%B4%A5%E4%BA%86%E3%80%82%3C%2FP%3E%3CP%3E%26gt%3B%3CSPAN%3E%E5%B0%86%E9%A1%B9%E7%9B%AE%E5%AF%BC%E5%85%A5%E5%85%B6%E4%BB%96%E5%B7%A5%E4%BD%9C%E5%8C%BA%E6%88%96%E7%94%B5%E8%84%91%E5%90%8E%EF%BC%8C%E6%98%AF%E5%90%A6%E8%BF%98%E4%BC%9A%E5%87%BA%E7%8E%B0%E6%AD%A4%E9%97%AE%E9%A2%98%EF%BC%9F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%E6%88%91%E5%9C%A8%E6%B2%A1%E6%9C%89%E5%AE%89%E8%A3%85%E8%BF%87%E7%9A%84%E6%96%B0%E6%9C%BA%E5%99%A8%E4%B8%8A%E5%AE%89%E8%A3%85%E4%BA%86%20IDE%20v25.6%EF%BC%8C%E5%A4%8D%E5%88%B6%E4%BA%86%E9%A1%B9%E7%9B%AE%EF%BC%8C%E7%89%88%E6%9C%AC%E5%B9%B6%E5%B0%9D%E8%AF%95%E8%B0%83%E8%AF%95%EF%BC%8C%E7%BB%93%E6%9E%9C%E6%98%AF%E4%B8%80%E6%A0%B7%E7%9A%84%E3%80%82%3C%2FP%3E%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2202158%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2202158%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%82%A8%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F213907%22%20target%3D%22_blank%22%3E%40expertsleepers%3C%2FA%3E%3C%2FP%3E%0A%3CP%3E%E6%84%9F%E8%B0%A2%E6%82%A8%E7%9A%84%E8%80%90%E5%BF%83%E7%AD%89%E5%BE%85%E5%92%8C%E6%8F%90%E4%BE%9B%E6%9B%B4%E5%A4%9A%E4%BF%A1%E6%81%AF%EF%BC%81%20%3C%2FP%3E%0A%3CP%3E%E4%BD%A0%E7%9A%84%E6%84%8F%E6%80%9D%E6%98%AF%EF%BC%8C%E5%A6%82%E6%9E%9C%E5%B0%86%E4%BB%A3%E7%A0%81%E6%8F%90%E4%BA%A4%E5%9B%9E%E9%A1%B9%E7%9B%AE%E7%9A%84%E5%85%88%E5%89%8D%E9%98%B6%E6%AE%B5%EF%BC%8C%E8%B0%83%E8%AF%95%E5%8A%9F%E8%83%BD%E6%98%AF%E5%90%A6%E4%BC%9A%E8%BF%90%E8%A1%8C%E5%BE%97%E6%9B%B4%E5%A5%BD%EF%BC%9F%3C%2FP%3E%0A%3CP%3E%E6%88%91%E6%83%B3%E7%9F%A5%E9%81%93%E5%A6%82%E4%BD%95%E5%9C%A8%E6%88%91%E8%BF%99%E8%BE%B9%E5%A4%8D%E5%88%B6%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%E3%80%82%E5%9C%A8%E5%85%B6%E4%BB%96%E5%B7%A5%E4%BD%9C%E5%8C%BA%E6%88%96%E7%94%B5%E8%84%91%E4%B8%8A%E5%AF%BC%E5%85%A5%E9%A1%B9%E7%9B%AE%E6%97%B6%EF%BC%8C%E4%BC%9A%E9%87%8D%E5%A4%8D%E5%87%BA%E7%8E%B0%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%E5%90%97%EF%BC%9F%20%3C%2FP%3E%0A%3CP%3E%E4%B8%80%E5%88%87%E9%A1%BA%E5%88%A9%20%3C%2FP%3E%0A%3CP%3E%E8%BF%AA%E4%BA%9A%E6%88%88%3C%2FP%3E%0A%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2199194%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2199194%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E8%BF%99%E6%98%AF%E4%B8%80%E5%9D%97%E9%9D%9E%E5%B8%B8%E7%AE%80%E5%8D%95%E7%9A%84%E6%9D%BF%EF%BC%8C%E6%88%91%E7%94%A8%E6%9D%A5%E6%B5%8B%E8%AF%95%E4%B8%80%E4%BA%9B%E5%A4%96%E5%9B%B4%E8%AE%BE%E5%A4%87%E3%80%82%E5%AE%83%E5%9F%BA%E6%9C%AC%E4%B8%8A%E7%94%B1%20MCU%E3%80%81%E4%B8%80%E4%B8%AA%E7%94%A8%E4%BA%8E%20XIP%20%E7%9A%84%20QSPI%20%E9%97%AA%E5%AD%98%E3%80%81%E4%B8%80%E4%BA%9B%20SPI%20%E5%92%8C%20I2C%20%E5%A4%96%E5%9B%B4%E8%AE%BE%E5%A4%87%E4%BB%A5%E5%8F%8A%E4%B8%80%E4%B8%AA%20USB%20%E7%AB%AF%E5%8F%A3%E7%BB%84%E6%88%90%E3%80%82%3CBR%20%2F%3E%3CBR%20%2F%3E%E4%B9%9F%E8%AE%B8%E6%88%91%E6%B2%A1%E6%9C%89%E8%AF%B4%E6%B8%85%E6%A5%9A%EF%BC%8C%E5%9C%A8%E9%A1%B9%E7%9B%AE%E8%BE%BE%E5%88%B0%E4%B8%80%E5%AE%9A%E8%A7%84%E6%A8%A1%E4%B9%8B%E5%89%8D%EF%BC%8C%E9%A1%B9%E7%9B%AE%E5%9C%A8%E8%B0%83%E8%AF%95%E5%99%A8%E4%B8%8B%E4%B8%80%E7%9B%B4%E8%BF%90%E8%A1%8C%E6%AD%A3%E5%B8%B8%E3%80%82%E5%87%A0%E5%A4%A9%E6%9D%A5%EF%BC%8C%E6%88%91%E4%B8%80%E7%9B%B4%E5%9C%A8%E6%84%89%E5%BF%AB%E5%9C%B0%E5%B7%A5%E4%BD%9C%EF%BC%8C%E7%9B%B4%E5%88%B0%E8%B0%83%E8%AF%95%E5%99%A8%E7%AA%81%E7%84%B6%E5%BC%80%E5%A7%8B%E5%A4%B1%E7%81%B5%E3%80%82%3CBR%20%2F%3E%3CBR%20%2F%3E%E9%9B%86%E6%88%90%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83%E6%9C%AC%E8%BA%AB%E5%9C%A8%E6%88%91%E7%9A%84%E5%8F%A6%E4%B8%80%E4%B8%AA%E9%A1%B9%E7%9B%AE%E4%B8%AD%E7%BB%A7%E7%BB%AD%E6%AD%A3%E5%B8%B8%E8%BF%90%E8%A1%8C%EF%BC%8C%E6%89%80%E4%BB%A5%E6%88%91%E5%B9%B6%E4%B8%8D%E6%8B%85%E5%BF%83%E9%9B%86%E6%88%90%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83%E6%9C%AC%E8%BA%AB%E3%80%82%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2199169%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2199169%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%82%A8%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F213907%22%20target%3D%22_blank%22%3E%40expertsleepers%3C%2FA%3E%3C%2FP%3E%0A%3CP%3E%E8%B0%A2%E8%B0%A2%E6%82%A8%E7%9A%84%E6%BE%84%E6%B8%85%EF%BC%8C%E6%98%AF%E7%9A%84%EF%BC%8C%E6%88%91%E6%8C%87%E7%9A%84%E6%98%AF%20FCB%20%E6%96%87%E4%BB%B6%E3%80%82%20%3C%2FP%3E%0A%3CP%3E%E5%A6%82%E6%9E%9C%E9%97%AE%E9%A2%98%E5%87%BA%E5%9C%A8%E5%BD%93%E5%89%8D%E7%9A%84%E5%BA%94%E7%94%A8%E7%A8%8B%E5%BA%8F%E8%AE%BE%E7%BD%AE%E4%B8%8A%E5%91%A2%EF%BC%9F%20%E6%88%91%E6%83%B3%E5%8C%BA%E5%88%86%E9%97%AE%E9%A2%98%E5%87%BA%E5%9C%A8%E9%97%AA%E5%AD%98%E8%AE%BE%E7%BD%AE%E3%80%81%E5%BA%94%E7%94%A8%E7%A8%8B%E5%BA%8F%E8%AE%BE%E7%BD%AE%E8%BF%98%E6%98%AF%E9%9B%86%E6%88%90%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83%E4%B8%8A%E3%80%82%20%3C%2FP%3E%0A%3CP%3E%E5%A6%82%E6%9E%9C%E6%82%A8%E5%B0%9D%E8%AF%95%E8%BF%90%E8%A1%8C%20hello%20world%20%E6%BC%94%E7%A4%BA%EF%BC%8C%E7%BB%93%E6%9E%9C%E4%BC%9A%E6%80%8E%E6%A0%B7%EF%BC%9F%E4%BD%BF%E7%94%A8%E5%B7%B2%E5%9C%A8%E4%BD%BF%E7%94%A8%E7%9A%84%E7%9B%B8%E5%90%8C%20FCB%E3%80%82%20%3C%2FP%3E%0A%3CP%3E%E8%83%BD%E5%90%A6%E6%8F%90%E4%BE%9B%E6%9B%B4%E5%A4%9A%E6%9C%89%E5%85%B3%E9%A1%B9%E7%9B%AE%E7%9A%84%E8%AF%A6%E7%BB%86%E4%BF%A1%E6%81%AF%EF%BC%9F%20%3C%2FP%3E%0A%3CP%3E%E8%87%B4%E4%BB%A5%E6%9C%80%E5%B4%87%E9%AB%98%E7%9A%84%E6%95%AC%E6%84%8F%20%3C%2FP%3E%0A%3CP%3E%E8%BF%AA%E4%BA%9A%E6%88%88%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2198241%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2198241%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%88%91%E6%AD%A3%E5%9C%A8%E4%BD%BF%E7%94%A8%E9%99%84%E4%BB%B6%E4%B8%AD%E7%9A%84%E6%96%87%E4%BB%B6%E9%85%8D%E7%BD%AE%E9%97%AA%E5%85%89%E7%81%AF%E3%80%82%E5%AE%83%E4%BB%AC%E6%98%AF%E4%BB%8E%20SDK%20%E7%A4%BA%E4%BE%8B%E4%B8%AD%E5%A4%8D%E5%88%B6%E7%9A%84%EF%BC%8C%E6%88%91%E6%A3%80%E6%9F%A5%E8%BF%87%E5%AE%83%E4%BB%AC%E4%B8%8E%E6%88%91%E5%B7%A5%E4%BD%9C%E9%A1%B9%E7%9B%AE%E4%B8%AD%E7%9A%84%E6%96%87%E4%BB%B6%E5%AE%8C%E5%85%A8%E7%9B%B8%E5%90%8C%E3%80%82%3C%2FP%3E%3CP%3E%E4%B8%A4%E5%9D%97%E6%9D%BF%E4%B8%8A%E7%9A%84%E9%97%AA%E5%AD%98%E8%8A%AF%E7%89%87%E7%9B%B8%E5%90%8C%EF%BC%8C%E5%8D%B3%E5%8D%8E%E9%82%A6%20%3CSPAN%3EW25Q64JVXGIQ%3C%2FSPAN%3E%E3%80%82%3C%2FP%3E%3CP%3E%3CSPAN%3E%E8%BF%99%E4%BA%9B%E6%96%87%E4%BB%B6%E6%98%AF%E5%90%A6%E5%AE%9A%E4%B9%89%E4%BA%86%E6%82%A8%E6%89%80%E6%8C%87%E7%9A%84%22FCB%22%20%EF%BC%9F%3C%2FSPAN%3E%3C%2FP%3E%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2197785%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2197785%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E6%82%A8%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F213907%22%20target%3D%22_blank%22%3E%40expertsleepers%3C%2FA%3E%3C%2FP%3E%0A%3CP%3E%E6%84%9F%E8%B0%A2%E6%82%A8%E7%9A%84%E8%81%94%E7%B3%BB%EF%BC%81%3C%2FP%3E%0A%3CP%3E%E6%88%96%E8%AE%B8%E6%98%AF%E4%BD%A0IDE%E7%AB%AF%E7%9A%84FCB%E7%9A%84%E9%97%AE%E9%A2%98%E3%80%82%E4%BD%A0%E7%9C%8B%E8%BF%87%E9%82%A3%E4%BB%BD%E6%96%87%E4%BB%B6%E4%BA%86%E5%90%97%EF%BC%9F%E8%AE%A9%E6%88%91%E8%A7%A3%E9%87%8A%E4%B8%80%E4%B8%8B%E3%80%82%3C%2FP%3E%0A%3CP%3E%E4%BD%BF%E7%94%A8%20SEC%20%E5%B7%A5%E5%85%B7%E6%97%B6%EF%BC%8CSEC%20%E5%B7%A5%E5%85%B7%E4%B8%8D%E4%BC%9A%E5%86%99%E5%85%A5%E5%9B%BE%E5%83%8F%EF%BC%8C%E8%80%8C%E6%98%AF%E5%86%99%E5%85%A5%20%22%20%E6%9E%81%E7%AE%80%E4%B8%BB%E4%B9%89%E7%9A%84%20%22%20FCB%E3%80%82%E4%BD%BF%E7%94%A8%E9%9B%86%E6%88%90%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83%E6%97%B6%EF%BC%8C%E6%98%A0%E5%83%8F%E5%8C%85%E5%90%AB%20FCB%EF%BC%88%E5%A6%82%E6%9E%9C%E6%88%91%E6%B2%A1%E8%AE%B0%E9%94%99%E7%9A%84%E8%AF%9D%E6%98%AF%20qspi_config%EF%BC%89%E3%80%82%E6%98%AF%E5%90%A6%E6%A3%80%E6%9F%A5%E8%BF%87%20FCB%2Fqspi_config%20%E4%B8%8E%E6%82%A8%E7%9A%84%E6%98%A0%E5%83%8F%E5%8C%B9%E9%85%8D%EF%BC%9F%3C%2FP%3E%0A%3CP%3E%E8%87%B4%E4%BB%A5%E6%9C%80%E5%B4%87%E9%AB%98%E7%9A%84%E6%95%AC%E6%84%8F%20%3C%2FP%3E%0A%3CP%3E%E8%BF%AA%E4%BA%9A%E6%88%88%3C%2FP%3E%0A%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2247185%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Problems%20debugging%20iMXRT1011%20project%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2247185%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%B8%BA%E4%BA%86%E6%8E%92%E9%99%A4%E6%88%91%E7%9A%84%E8%87%AA%E5%AE%9A%E4%B9%89%E6%9D%BF%E5%87%BA%E7%8E%B0%E9%97%AE%E9%A2%98%EF%BC%8C%E6%88%91%E8%8E%B7%E5%BE%97%E4%BA%86%20MIMXRT1010%20EVK%E3%80%82EVK%20%E6%9D%BF%E4%B8%8A%E7%9A%84%E8%A1%8C%E4%B8%BA%E6%98%AF%E4%B8%80%E6%A0%B7%E7%9A%84%E3%80%82%3C%2FP%3E%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E