relationships between flash operation and interrupt

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

relationships between flash operation and interrupt

Jump to solution
472 Views
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 Kudos
1 Solution
461 Views
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

 

View solution in original post

0 Kudos
2 Replies
462 Views
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 Kudos
457 Views
gumu
Contributor IV

Hi Daniel,

I see, thanks for your reply. 

I will do some tests in bootloader.

0 Kudos