int_sram_no_cacheable issue

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

int_sram_no_cacheable issue

830 次查看
dhanabharathi
Contributor III

Hello @nxp ,

    I am using s32k31xevb and RTD 5.0 and i am configured ADC, CAN and PWM module, when I configure SPI module i am getting , 'non_cacheable_bss' will not fit in region 'int_sram_no_cacheable' error. region overflow by bytes 864.

  how to resolve this error? could you provide solution for this.

标记 (3)
0 项奖励
回复
10 回复数

790 次查看
Julián_AragónM
NXP TechSupport
NXP TechSupport

Hi @dhanabharathi,

Size of this section is defined in the linker file.

The int_sram_no_cacheable region is used for data that must stay consistent between the CPU and peripherals, such as DMA buffers. It avoids cache-related issues and ensures reliable memory access for real-time operations.

You could your linker file to allocate more space to the int_sram_no_cacheable region, however, you must make sure the new size does not overlap.

Also, if you are not using the Det module, you can simply delete it from project source directory to free up some space: Solved: S32DS Update RTD5.0 and Compile with non_cacheable_bss overflow error - NXP Community.

Best regards,
Julián

0 项奖励
回复

771 次查看
dhanabharathi
Contributor III

Hello @Julián_AragónM ,

I have a couple of questions:

  1. The scheduler manager and DET files are taking more memory. Is there any way to reduce the size of these scheduler manager files?

  2. For memory reallocation, is it possible to take additional size from int_sram? Will this cause any issues?


    

标记 (3)
0 项奖励
回复

750 次查看
Julián_AragónM
NXP TechSupport
NXP TechSupport

Hi @dhanabharathi,

1. Yes. If you are not using default error tracer (DET), you can simply delete it. You can also reduce tasks/events or services in your scheduler/OS to reduce size.

2. Yes. You can allocate extra space form int_sram, just ensure you do not overlap regions.

Best regards,
Julián

0 项奖励
回复

721 次查看
dhanabharathi
Contributor III

hello @Julián_AragónM ,

  1. if I remove Det.c file from RTD i am getting compilation error. I no need Det related (det.c) file how to handle this problem?
  2. if I took memory space from int_sram. i am getting HardFaulthandler. how to resolve this problem.?

0 项奖励
回复

680 次查看
Julián_AragónM
NXP TechSupport
NXP TechSupport

Hi @dhanabharathi,

1. Are you deleting all related Det files? Have you disabled all of the error detection in your modules? If not, the driver may try to include related files:

Snag_72e69c.png

Snag_73323c.png

2. Hard to say without seeing what you modified or where does the hard fault happened, however, please check the .map file compiled by your project, and adjust the link file according to the size of your program.

When adjusting the linker file, pay attention to MPU config and such. I suggest deleting Det.c for now to avoid overflow for now.

Best regards,
Julián

0 项奖励
回复

598 次查看
dhanabharathi
Contributor III

Hello @Julián_AragónM ,
   
      I am adjusting the linker file like that attached blow. the memory region is not overlapped, but i am getting the hard fault handler issue, while MC_init_clock() function triggering. how resolve this problem? 
     if it is due to MPU problem, how to resolve this problem?

note: In my configuration MPU is disabled.

0 项奖励
回复

584 次查看
Julián_AragónM
NXP TechSupport
NXP TechSupport

Hi @dhanabharathi,

It seems that the no cacheable area is not aligned on 4KB boundary.

For now, could you try keeping the linker file the same, and simply deleting Det component to see if enough space is freed up? Have you disabled Det in the modules?

int_sram_no_cacheable region should only be used to save specific data buffers of the modules such as MCL, SPI, etc. 

Best regards,
Julián

0 项奖励
回复

559 次查看
dhanabharathi
Contributor III

Hello @Julián_AragónM ,
   
      I deleted Det related files still I need 4kb space in int_sram_no_cacheable region. 

could you give me aligned on 4KB boundary linker file or give me example for that.

标记 (3)
0 项奖励
回复

542 次查看
dhanabharathi
Contributor III

hello @Julián_AragónM ,

   The linker file adjustment is correct, when I manually disable the S32_MPU->CTRL = 0, I am not getting hard fault error.
   I am using S32 design studio 3.6.0 and RTD 5.0 version. how to solve this vis configuration. kindly provide solution for this problem.

标记 (3)
0 项奖励
回复

282 次查看
Julián_AragónM
NXP TechSupport
NXP TechSupport

Hi @dhanabharathi,

MPU can be disabled with Mpu_M7_Ip_Deinit(). 

Also, most examples have MPU_ENABLED defined as a project symbol:

Julin_AragnM_0-1763679199514.png

This initializes the MPU inside SystemInit() function at startup. Keep in mind this removes memory protection, you should update MPU regions to match your linker changes instead of disabling it.

You can refer to ARM documentation:

Best regards,
Julián

0 项奖励
回复
%3CLINGO-SUB%20id%3D%22lingo-sub-2201885%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3Eint_sram_no_cacheable%20%E9%97%AE%E9%A2%98%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2201885%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%20%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F61445%22%20target%3D%22_blank%22%3E%40nxp%3C%2FA%3E%EF%BC%8C%3CBR%20%2F%3E%3CBR%20%2F%3E%E6%88%91%E4%BD%BF%E7%94%A8%E7%9A%84%E6%98%AF%20s32k31xevb%20%E5%92%8C%20RTD%205.0%EF%BC%8C%E6%88%91%E9%85%8D%E7%BD%AE%E4%BA%86%20ADC%E3%80%81CAN%20%E5%92%8C%20PWM%20%E6%A8%A1%E5%9D%97%EF%BC%8C%E5%BD%93%E6%88%91%E9%85%8D%E7%BD%AE%20SPI%20%E6%A8%A1%E5%9D%97%E6%97%B6%EF%BC%8C%E6%88%91%E5%BE%97%E5%88%B0%E7%9A%84%E6%98%AF%20%E2%80%9C%3CU%3E%3CEM%3Enon_cacheable_bss%E2%80%9D%20%E4%B8%8D%E9%80%82%E5%90%88%E5%8C%BA%E5%9F%9F%20%E2%80%9Cint_sram_no_cacheab%3C%2FEM%3E%3C%2FU%3E%20le%E2%80%9D%20%E9%94%99%E8%AF%AF%E3%80%82%E5%8C%BA%E5%9F%9F%E6%BA%A2%E5%87%BA%E5%AD%97%E8%8A%82%20864%E3%80%82%3CBR%20%2F%3E%3CBR%20%2F%3E%E5%A6%82%E4%BD%95%E8%A7%A3%E5%86%B3%E8%BF%99%E4%B8%AA%E9%94%99%E8%AF%AF%EF%BC%9F%E8%83%BD%E5%90%A6%E6%8F%90%E4%BE%9B%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88%EF%BC%9F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2205179%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2205179%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F200831%22%20target%3D%22_blank%22%3E%40Juli%C3%A1n_Arag%C3%B3nM%3C%2FA%3E%2C%3CBR%20%2F%3E%3CBR%20%2F%3E%20%E9%93%BE%E6%8E%A5%E5%99%A8%E6%96%87%E4%BB%B6%E8%B0%83%E6%95%B4%E6%AD%A3%E7%A1%AE%EF%BC%8C%E5%BD%93%E6%88%91%E6%89%8B%E5%8A%A8%E7%A6%81%E7%94%A8%3CFONT%20color%3D%22%23FF0000%22%3ES32_MPU-%26gt%3BCTRL%3D%200%20%E6%97%B6%EF%BC%8C%3CFONT%20color%3D%22%23000000%22%3E%E6%88%91%E6%B2%A1%E6%9C%89%E6%94%B6%E5%88%B0%E7%A1%AC%E6%95%85%E9%9A%9C%E9%94%99%E8%AF%AF%E3%80%82%3CBR%20%2F%3E%20%20%E6%88%91%E4%BD%BF%E7%94%A8%E7%9A%84%E6%98%AF%20S32%20design%20studio%203.6.0%20%E5%92%8C%20RTD%205.0%20%E7%89%88%E6%9C%AC%E3%80%82%E8%AF%B7%E6%8F%90%E4%BE%9B%E8%AF%A5%E9%97%AE%E9%A2%98%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88%E3%80%82%3C%2FFONT%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2204855%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2204855%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F200831%22%20target%3D%22_blank%22%3E%40Juli%C3%A1n_Arag%C3%B3nM%3C%2FA%3E%2C%3CBR%20%2F%3E%20%20%20%3CBR%20%2F%3E%20%E6%88%91%E5%88%A0%E9%99%A4%E4%BA%86%20Det%20%E7%9B%B8%E5%85%B3%E6%96%87%E4%BB%B6%EF%BC%8C%E4%BD%86%3CSPAN%3Eint_sram_no_cacheable%20%E5%8C%BA%E5%9F%9F%20%3C%2FSPAN%3E%E4%BB%8D%E9%9C%80%E8%A6%81%204kb%20%E7%A9%BA%E9%97%B4%E3%80%82%20%3C%2FP%3E%3CP%3E%3CSPAN%3E%E8%83%BD%E5%90%A6%E5%B0%86%204KB%20%E8%BE%B9%E7%95%8C%E9%93%BE%E6%8E%A5%E5%99%A8%E6%96%87%E4%BB%B6%E4%B8%8E%E6%88%91%E5%AF%B9%E9%BD%90%EF%BC%8C%E6%88%96%E4%B8%BE%E4%BE%8B%E8%AF%B4%E6%98%8E%E3%80%82%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2204659%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2204659%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%EF%BC%8C%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F253997%22%20target%3D%22_blank%22%3E%40dhanabharathi%3C%2FA%3E%E3%80%81%3C%2FP%3E%0A%3CP%3E%E6%97%A0%E7%BC%93%E5%AD%98%E5%8C%BA%E5%9F%9F%E4%BC%BC%E4%B9%8E%E6%B2%A1%E6%9C%89%E6%8C%89%204KB%20%E8%BE%B9%E7%95%8C%E5%AF%B9%E9%BD%90%E3%80%82%3C%2FP%3E%0A%3CP%3E%E7%8E%B0%E5%9C%A8%EF%BC%8C%E4%BD%A0%E8%83%BD%E5%90%A6%E5%B0%9D%E8%AF%95%E4%BF%9D%E6%8C%81%E9%93%BE%E6%8E%A5%E5%99%A8%E6%96%87%E4%BB%B6%E4%B8%8D%E5%8F%98%EF%BC%8C%E7%84%B6%E5%90%8E%E7%AE%80%E5%8D%95%E5%9C%B0%E5%88%A0%E9%99%A4%20Det%20%E5%85%83%E5%99%A8%E4%BB%B6%E4%BB%A5%E6%9F%A5%E7%9C%8B%E6%98%AF%E5%90%A6%E8%85%BE%E5%87%BA%E4%BA%86%E8%B6%B3%E5%A4%9F%E7%9A%84%E7%A9%BA%E9%97%B4%EF%BC%9F%E6%82%A8%E6%98%AF%E5%90%A6%E7%A6%81%E7%94%A8%E4%BA%86%E6%A8%A1%E5%9D%97%E4%B8%AD%E7%9A%84%20Det%EF%BC%9F%3C%2FP%3E%0A%3CP%3Eint_sram_no_cacheable%20%E5%8C%BA%E5%9F%9F%E5%8F%AA%E8%83%BD%E7%94%A8%E4%BA%8E%E4%BF%9D%E5%AD%98%20MCL%E3%80%81SPI%20%E7%AD%89%E6%A8%A1%E5%9D%97%E7%9A%84%E7%89%B9%E5%AE%9A%E6%95%B0%E6%8D%AE%E7%BC%93%E5%86%B2%E5%8C%BA%E3%80%82%20%3C%2FP%3E%0A%3CP%3E%E8%87%B4%E4%BB%A5%E6%9C%80%E8%AF%9A%E6%8C%9A%E7%9A%84%E9%97%AE%E5%80%99%EF%BC%8C%3CBR%20%2F%3EJuli%C3%A1n%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2204577%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2204577%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%2F200831%22%20target%3D%22_blank%22%3E%40Juli%C3%A1n_Arag%C3%B3nM%3C%2FA%3E%2C%3CBR%20%2F%3E%20%20%20%3CBR%20%2F%3E%20%E6%88%91%E6%AD%A3%E5%9C%A8%E8%B0%83%E6%95%B4%E9%93%BE%E6%8E%A5%E5%99%A8%E6%96%87%E4%BB%B6%EF%BC%8C%E5%B0%B1%E5%83%8F%E9%99%84%E4%BB%B6%E4%B8%AD%E7%9A%84%E9%82%A3%E6%A0%B7%E3%80%82%E5%86%85%E5%AD%98%E5%8C%BA%E5%9F%9F%E6%B2%A1%E6%9C%89%E9%87%8D%E5%8F%A0%EF%BC%8C%E4%BD%86%E6%88%91%E9%81%87%E5%88%B0%E4%BA%86%E7%A1%AC%E6%95%85%E9%9A%9C%E5%A4%84%E7%90%86%E7%A8%8B%E5%BA%8F%E9%97%AE%E9%A2%98%EF%BC%8C%E5%90%8C%E6%97%B6%E8%A7%A6%E5%8F%91%E4%BF%A1%E5%8F%B7%E4%BA%86%20mc_init_clock%20()%20%E5%87%BD%E6%95%B0%E3%80%82%E5%A6%82%E4%BD%95%E8%A7%A3%E5%86%B3%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%EF%BC%9F%20%3CBR%20%2F%3E%20%20%20%20%E5%A6%82%E6%9E%9C%E6%98%AF%20MPU%20%E9%97%AE%E9%A2%98%EF%BC%8C%E5%A6%82%E4%BD%95%E8%A7%A3%E5%86%B3%EF%BC%9F%3C%2FP%3E%3CP%3E%E6%B3%A8%EF%BC%9A%E5%9C%A8%E6%88%91%E7%9A%84%E9%85%8D%E7%BD%AE%E4%B8%AD%EF%BC%8CMPU%20%E5%B7%B2%E7%A6%81%E7%94%A8%E3%80%82%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2203960%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2203960%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%EF%BC%8C%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F253997%22%20target%3D%22_blank%22%3E%40dhanabharathi%3C%2FA%3E%E3%80%81%3C%2FP%3E%0A%3CP%3E1.%E6%82%A8%E6%98%AF%E5%90%A6%E5%88%A0%E9%99%A4%E4%BA%86%E6%89%80%E6%9C%89%E7%9B%B8%E5%85%B3%E7%9A%84%20Det%20%E6%96%87%E4%BB%B6%EF%BC%9F%E6%82%A8%E6%98%AF%E5%90%A6%E7%A6%81%E7%94%A8%E4%BA%86%E6%A8%A1%E5%9D%97%E4%B8%AD%E7%9A%84%E6%89%80%E6%9C%89%E9%94%99%E8%AF%AF%E6%A3%80%E6%B5%8B%E5%8A%9F%E8%83%BD%EF%BC%9F%E5%A6%82%E6%9E%9C%E6%B2%A1%E6%9C%89%EF%BC%8C%E9%A9%B1%E5%8A%A8%E7%A8%8B%E5%BA%8F%E5%8F%AF%E8%83%BD%E4%BC%9A%E5%B0%9D%E8%AF%95%E5%8C%85%E5%90%AB%E7%9B%B8%E5%85%B3%E6%96%87%E4%BB%B6%EF%BC%9A%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22Snag_72e69c.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22Snag_72e69c.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F365358i7FF22420370AA564%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22Snag_72e69c.png%22%20alt%3D%22Snag_72e69c.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22Snag_73323c.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22Snag_73323c.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F365359iA7567FD15B1AC135%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22Snag_73323c.png%22%20alt%3D%22Snag_73323c.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E2.%E5%9C%A8%E6%B2%A1%E6%9C%89%E7%9C%8B%E5%88%B0%E6%82%A8%E4%BF%AE%E6%94%B9%E7%9A%84%E5%86%85%E5%AE%B9%E6%88%96%E5%8F%91%E7%94%9F%E6%95%85%E9%9A%9C%E7%9A%84%E4%BD%8D%E7%BD%AE%E7%9A%84%E6%83%85%E5%86%B5%E4%B8%8B%EF%BC%8C%E5%BE%88%E9%9A%BE%E8%AF%B4%EF%BC%8C%E4%B8%8D%E8%BF%87%EF%BC%8C%3CSPAN%3E%E8%AF%B7%E6%A3%80%E6%9F%A5%E6%82%A8%E7%9A%84%E9%A1%B9%E7%9B%AE%E7%BC%96%E8%AF%91%E7%9A%84%20.map%20%E6%96%87%E4%BB%B6%EF%BC%8C%E5%B9%B6%E6%A0%B9%E6%8D%AE%E7%A8%8B%E5%BA%8F%E7%9A%84%E5%A4%A7%E5%B0%8F%E8%B0%83%E6%95%B4%E9%93%BE%E6%8E%A5%E6%96%87%E4%BB%B6%E3%80%82%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%E8%B0%83%E6%95%B4%E9%93%BE%E6%8E%A5%E5%99%A8%E6%96%87%E4%BB%B6%E6%97%B6%EF%BC%8C%E8%AF%B7%E6%B3%A8%E6%84%8F%20MPU%20%E9%85%8D%E7%BD%AE%E7%AD%89%E3%80%82%E6%88%91%E5%BB%BA%E8%AE%AE%E6%9A%82%E6%97%B6%E5%88%A0%E9%99%A4%20Det.c%EF%BC%8C%E4%BB%A5%E9%81%BF%E5%85%8D%E6%BA%A2%E5%87%BA%E3%80%82%3C%2FP%3E%0A%3CP%3E%E8%87%B4%E4%BB%A5%E6%9C%80%E8%AF%9A%E6%8C%9A%E7%9A%84%E9%97%AE%E5%80%99%EF%BC%8C%3CBR%20%2F%3EJuli%C3%A1n%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2203171%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2203171%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F200831%22%20target%3D%22_blank%22%3E%40Juli%C3%A1n_Arag%C3%B3nM%3C%2FA%3E%E3%80%81%3C%2FP%3E%3CP%3E%20%201.%20%E5%A6%82%E6%9E%9C%E6%88%91%E4%BB%8E%20RTD%20%E4%B8%AD%E5%88%A0%E9%99%A4%20Det.c%20%E6%96%87%E4%BB%B6%EF%BC%8C%E5%B0%B1%E4%BC%9A%E5%87%BA%E7%8E%B0%E7%BC%96%E8%AF%91%E9%94%99%E8%AF%AF%E3%80%82%E6%88%91%E4%B8%8D%E9%9C%80%E8%A6%81%20Det%20%E7%9B%B8%E5%85%B3%EF%BC%88det.c%EF%BC%89%E6%96%87%E4%BB%B6%EF%BC%8C%E5%A6%82%E4%BD%95%E5%A4%84%E7%90%86%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%EF%BC%9F%3CBR%20%2F%3E%202.%3CFONT%20color%3D%22%23FF0000%22%3E%E7%9A%84%3C%2FFONT%3E%E5%86%85%E5%AD%98%E7%A9%BA%E9%97%B4%E3%80%82%E6%88%91%E6%94%B6%E5%88%B0%3CFONT%20color%3D%22%23FF0000%22%3EHardFaulthandler%3C%2FFONT%3E.%E5%A6%82%E4%BD%95%E8%A7%A3%E5%86%B3%E8%BF%99%E4%B8%AA%E9%97%AE%E9%A2%98%EF%BC%9F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2202967%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2202967%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%EF%BC%8C%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F253997%22%20target%3D%22_blank%22%3E%40dhanabharathi%3C%2FA%3E%E3%80%81%3C%2FP%3E%0A%3CP%3E1.%E6%98%AF%E7%9A%84%E3%80%82%E5%A6%82%E6%9E%9C%E4%B8%8D%E4%BD%BF%E7%94%A8%E9%BB%98%E8%AE%A4%E9%94%99%E8%AF%AF%E8%B7%9F%E8%B8%AA%E5%99%A8%20(DET)%EF%BC%8C%E5%8F%AF%E4%BB%A5%E7%9B%B4%E6%8E%A5%E5%B0%86%E5%85%B6%E5%88%A0%E9%99%A4%E3%80%82%E6%82%A8%E8%BF%98%E5%8F%AF%E4%BB%A5%E5%9C%A8%E8%B0%83%E5%BA%A6%E7%A8%8B%E5%BA%8F%2F%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F%E4%B8%AD%E5%87%8F%E5%B0%91%E4%BB%BB%E5%8A%A1%2F%E4%BA%8B%E4%BB%B6%E6%88%96%E6%9C%8D%E5%8A%A1%EF%BC%8C%E4%BB%A5%E7%BC%A9%E5%B0%8F%E4%BD%93%E7%A7%AF%E3%80%82%3C%2FP%3E%0A%3CP%3E2.%E6%98%AF%E7%9A%84%E3%80%82%E4%BD%A0%E5%8F%AF%E4%BB%A5%E5%9C%A8%20int_sram%20%E4%B8%AD%E5%88%86%E9%85%8D%E9%A2%9D%E5%A4%96%E7%9A%84%E7%A9%BA%E9%97%B4%EF%BC%8C%E5%8F%AA%E8%A6%81%E7%A1%AE%E4%BF%9D%E5%8C%BA%E5%9F%9F%E4%B8%8D%E9%87%8D%E5%8F%A0%E5%8D%B3%E5%8F%AF%E3%80%82%3C%2FP%3E%0A%3CP%3E%E8%87%B4%E4%BB%A5%E6%9C%80%E8%AF%9A%E6%8C%9A%E7%9A%84%E9%97%AE%E5%80%99%EF%BC%8C%3CBR%20%2F%3EJuli%C3%A1n%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2202467%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2202467%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F200831%22%20target%3D%22_blank%22%3E%40Juli%C3%A1n_Arag%C3%B3nM%3C%2FA%3E%E3%80%81%3C%2FP%3E%3CP%3E%3CFONT%20face%3D%22arial%2Chelvetica%2Csans-serif%22%3E%E6%88%91%E6%9C%89%E5%87%A0%E4%B8%AA%E9%97%AE%E9%A2%98%EF%BC%9A%3C%2FFONT%3E%3C%2FP%3E%3COL%3E%3CLI%3E%3CP%3E%3CFONT%20face%3D%22arial%2Chelvetica%2Csans-serif%22%3E%E8%B0%83%E5%BA%A6%E7%A8%8B%E5%BA%8F%E7%AE%A1%E7%90%86%E5%99%A8%E5%92%8C%20DET%20%E6%96%87%E4%BB%B6%E5%8D%A0%E7%94%A8%E4%BA%86%E6%9B%B4%E5%A4%9A%E5%86%85%E5%AD%98%E3%80%82%E6%9C%89%E6%B2%A1%E6%9C%89%E5%8A%9E%E6%B3%95%E5%87%8F%E5%B0%91%E8%BF%99%E4%BA%9B%E8%B0%83%E5%BA%A6%E7%AE%A1%E7%90%86%E5%99%A8%E6%96%87%E4%BB%B6%E7%9A%84%E5%A4%A7%E5%B0%8F%EF%BC%9F%3C%2FFONT%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%3E%3CFONT%20face%3D%22arial%2Chelvetica%2Csans-serif%22%3E%E5%AF%B9%E4%BA%8E%E5%86%85%E5%AD%98%E9%87%8D%E6%96%B0%E5%88%86%E9%85%8D%EF%BC%8C%E6%98%AF%E5%90%A6%E5%8F%AF%E4%BB%A5%E4%BB%8E%20%3CSTRONG%3E%3CFONT%20color%3D%22%23c7254e%22%3E%3CSPAN%3Eint_sram%3C%2FSPAN%3E%3C%2FFONT%3E%3C%2FSTRONG%3E%3F%E8%BF%99%E6%98%AF%E5%90%A6%E4%BC%9A%E5%BC%95%E8%B5%B7%E4%BB%BB%E4%BD%95%E9%97%AE%E9%A2%98%EF%BC%9F%3C%2FFONT%3E%3C%2FLI%3E%3C%2FOL%3E%3CP%3E%3CBR%20%2F%3E%26nbsp%3B%20%26nbsp%3B%26nbsp%3B%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2202057%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20int_sram_no_cacheable%20issue%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2202057%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%EF%BC%8C%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F253997%22%20target%3D%22_blank%22%3E%40dhanabharathi%3C%2FA%3E%E3%80%81%3C%2FP%3E%0A%3CP%3E%E8%AF%A5%E9%83%A8%E5%88%86%E7%9A%84%E5%A4%A7%E5%B0%8F%E5%9C%A8%E9%93%BE%E6%8E%A5%E5%99%A8%E6%96%87%E4%BB%B6%E4%B8%AD%E5%AE%9A%E4%B9%89%E3%80%82%3C%2FP%3E%0A%3CP%3Eint_sram_no_cacheable%20%E5%8C%BA%E5%9F%9F%E7%94%A8%E4%BA%8E%20CPU%20%E5%92%8C%E5%A4%96%E8%AE%BE%EF%BC%88%E5%A6%82%20DMA%20%E7%BC%93%E5%86%B2%E5%8C%BA%EF%BC%89%E4%B9%8B%E9%97%B4%E5%BF%85%E9%A1%BB%E4%BF%9D%E6%8C%81%E4%B8%80%E8%87%B4%E7%9A%84%E6%95%B0%E6%8D%AE%E3%80%82%E5%AE%83%E9%81%BF%E5%85%8D%E4%BA%86%E4%B8%8E%E9%AB%98%E9%80%9F%E7%BC%93%E5%AD%98%E7%9B%B8%E5%85%B3%E7%9A%84%E9%97%AE%E9%A2%98%EF%BC%8C%E7%A1%AE%E4%BF%9D%E4%BA%86%E5%AE%9E%E6%97%B6%E6%93%8D%E4%BD%9C%E7%9A%84%E5%8F%AF%E9%9D%A0%E5%86%85%E5%AD%98%E8%AE%BF%E9%97%AE%E3%80%82%3C%2FP%3E%0A%3CP%3E%E6%82%A8%E5%8F%AF%E4%BB%A5%E9%80%9A%E8%BF%87%E9%93%BE%E6%8E%A5%E5%99%A8%E6%96%87%E4%BB%B6%E4%B8%BA%20int_sram_no_cacheable%20%E5%8C%BA%E5%9F%9F%E5%88%86%E9%85%8D%E6%9B%B4%E5%A4%9A%E7%A9%BA%E9%97%B4%EF%BC%8C%E4%BD%86%E5%BF%85%E9%A1%BB%E7%A1%AE%E4%BF%9D%E6%96%B0%E5%A4%A7%E5%B0%8F%E4%B8%8D%E4%BC%9A%E9%87%8D%E5%8F%A0%E3%80%82%3C%2FP%3E%0A%3CP%3E%E6%AD%A4%E5%A4%96%EF%BC%8C%E5%A6%82%E6%9E%9C%E4%B8%8D%E4%BD%BF%E7%94%A8%20Det%20%E6%A8%A1%E5%9D%97%EF%BC%8C%E5%8F%AF%E4%BB%A5%E7%9B%B4%E6%8E%A5%E4%BB%8E%E9%A1%B9%E7%9B%AE%E6%BA%90%E4%BB%A3%E7%A0%81%E7%9B%AE%E5%BD%95%E4%B8%AD%E5%88%A0%E9%99%A4%E5%AE%83%EF%BC%8C%E4%BB%A5%E8%85%BE%E5%87%BA%E4%B8%80%E4%BA%9B%E7%A9%BA%E9%97%B4%EF%BC%9A%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2FS32M%2FS32DS-Update-RTD5-0-and-Compile-with-non-cacheable-bss-overflow%2Fm-p%2F1993577%22%20target%3D%22_blank%22%3E%E5%B7%B2%E8%A7%A3%E5%86%B3%EF%BC%9AS32DS%20%E6%9B%B4%E6%96%B0%20RTD5.0%20%E5%B9%B6%E7%BC%96%E8%AF%91%E6%97%B6%E5%87%BA%E7%8E%B0%20non_cacheable_bss%20%E6%BA%A2%E5%87%BA%E9%94%99%E8%AF%AF%20-%20NXP%20Community%3C%2FA%3E%E3%80%82%3C%2FP%3E%0A%3CP%3E%E8%87%B4%E4%BB%A5%E6%9C%80%E8%AF%9A%E6%8C%9A%E7%9A%84%E9%97%AE%E5%80%99%EF%BC%8C%3CBR%20%2F%3EJuli%C3%A1n%3C%2FP%3E%3C%2FLINGO-BODY%3E