relationships between flash operation and interrupt

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

relationships between flash operation and interrupt

跳至解决方案
652 次查看
gumu
Contributor IV

Hi NXP team,

If write/erase the flash different block, do I need to disable all interrupt?

if yes, how to fix FS26 watchdog feed problem, Since I have to fresh watchdog in duration which is based on GPT, the interrupt of GPT is disable by operation of flash。

Thanks for any advice!

 

0 项奖励
回复
1 解答
641 次查看
danielmartynek
NXP TechSupport
NXP TechSupport

Hi @gumu,

There is the “Read-While-Write” (RWW) that allows performing a read and a write simultaneously (applies only when operations are in different blocks).

When it comes to interrupts, it depends on where the vector table, the ISR and the resources that the ISR reads are stored.

For example, if you want to reprogram Block_0, none of the above mentioned can be stored in that block.

 

Regards,

Daniel

 

在原帖中查看解决方案

0 项奖励
回复
2 回复数
642 次查看
danielmartynek
NXP TechSupport
NXP TechSupport

Hi @gumu,

There is the “Read-While-Write” (RWW) that allows performing a read and a write simultaneously (applies only when operations are in different blocks).

When it comes to interrupts, it depends on where the vector table, the ISR and the resources that the ISR reads are stored.

For example, if you want to reprogram Block_0, none of the above mentioned can be stored in that block.

 

Regards,

Daniel

 

0 项奖励
回复
637 次查看
gumu
Contributor IV

Hi Daniel,

I see, thanks for your reply. 

I will do some tests in bootloader.

0 项奖励
回复