> Why i can't use the forum to fin someone who understand a little more than me?
You can, but any complete explanation would be as long as the reference manual.
> Could you please answer to the last cuestion??
I don't understand your question as phrased, but reading through the previous times you've asked it, you can't see a use for it.
Let's see if I can try again. Note I'm reading the Reference Manual, I don't know any more than that.
Assume you don't want your code pirated. You SECURE the chip. That disables the BDM, so you can't get to it with the debugger any more. If you have secured it and disabled the backdoor (KEYEN bit in CFMSEC), then the only access to the chip starts with erasing the entire FLASH and then performing the blank-check. That unsecures it and lets you write new (or the same) code back to the chip. You can also write it back with security turned off.
If you have enabled back door access, then you can use that to remove the security, and then are able to read the code and debug the chip. But only people who know the 8-byte security code
Who would you want to do this? To debug a problem, to connect the debugger to read variables, to get access to read logged data that isn't available any other way. There may be some part of your production process that requires programming, testing and then reprogramming with a different version of code.
Does that help explain what it is for?
> I had secured the flash ( 4ac8 in position 0x414 ) and then i tried to write ...
If you were able to get full access to the chip after "securing" it, then maybe you didn't secure it properly, or the operation didn't work or you didn't reset/power-cycle the chip after doing that. After resetting you should be able to read the "secured state" from CFMSEC[SECSTAT]. Write some code that reads that register and prints out the result somehow (or flashes a LED differently for the different states of that bit). You may find the chip isn't really secured.
Tom