Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob

F2MC-16LX: Possible to write in the flash by unit of Word

F2MC-16LX: Possible to write in the flash by unit of Word

Anonymous
Not applicable

Answer:

FLASH MCU for F2MC-16LX family is possible to program with word unit by issuing command as following on RAM.
Erase is sector unit.

FLASH Memory Writing Command

                                                                                                              

Command Sequence1st bus
    Write cycle
2nd bus
    Write cycle
3rd bus
    Write cycle
4th bus
    Write cycle
AddressDataAddressDataAddressDataAddressData
Write/
    program
FxAAAAxxAAFx5554xx55FxAAAAxxA0Write
    Address
Write
    Data

Command Program sample (execute on RAM)

MOV       A,#0FFh   
MOV       ADB,A    ; Bank Setting
MOVW    ADB:0AAAAh,#00AAH    ; FLASH Write Command 1st cycle
MOVW    ADB:5554h,#0055H    ; FLASH Write Command 2nd cycle
MOVW    ADB:0AAAAh,#00A0H    ; FLASH Write Command 3rd cycle
MOVW    ADB:0000h,#0AA55h    ; FF0000h ← "55h", FF001h ← "AAh"
                 .
                 .
                 .
       Sequence check
                 .
                 .
                 .   

0 Likes
362 Views
Contributors