Other Parts Discussed in Thread: MSP430FR2476
Tool/software:
Hi
I have one question, I'm using now the MSP430FR6972, I would like to using the information memory sector like eeprom
but I don't find what I can protect the Information memeory from accidental wriiting.
example, when I'm using the MSP430FR2476 I'm using this procedute to unprotect the Info memory only when I need to write it
when I want to write the info using this istruction Info_write_enable: mov.w #(FRWPPW+PFWP),SYSCFG0 ;* unprotect the Info memory
after writing I protect again the info rmation memory with this instruction info__write_disable: mov.w #(FRWPPW+DFWP+PFWP),SYSCFG0 ;* protect info memory
on the MSP430FR6972 I dont' find the similar register, is possible to using the Info memory according my example ?
I have fix the MPU register to protect the entire memory but in the border there are not the Info memory.
How I can fix this issue