English
Language : 

C8051F388 Datasheet, PDF (130/285 Pages) –
C8051F388/9/A/B
18.1.3. Flash Write Procedure
Bytes in Flash memory can be written one byte at a time, or in groups of two. The FLBWE bit in register
PFE0CN (SFR Definition ) controls whether a single byte or a block of two bytes is written to Flash during
a write operation. When FLBWE is cleared to 0, the Flash will be written one byte at a time. When FLBWE
is set to 1, the Flash will be written in two-byte blocks. Block writes are performed in the same amount of
time as single-byte writes, which can save time when storing large amounts of data to Flash mem-
ory.During a single-byte write to Flash, bytes are written individually, and a Flash write will be performed
after each MOVX write instruction. The recommended procedure for writing Flash in single bytes is:
1. Disable interrupts.
2. Clear the FLBWE bit (register PFE0CN) to select single-byte write mode.
3. Set the PSWE bit (register PSCTL).
4. Clear the PSEE bit (register PSCTL).
5. Write the first key code to FLKEY: 0xA5.
6. Write the second key code to FLKEY: 0xF1.
7. Using the MOVX instruction, write a single data byte to the desired location within the 512-byte sector.
8. Clear the PSWE bit.
9. Re-enable interrupts.
Steps 5-7 must be repeated for each byte to be written.
For block Flash writes, the Flash write procedure is only performed after the last byte of each block is writ-
ten with the MOVX write instruction. A Flash write block is two bytes long, from even addresses to odd
addresses. Writes must be performed sequentially (i.e. addresses ending in 0b and 1b must be written in
order). The Flash write will be performed following the MOVX write that targets the address ending in 1b. If
a byte in the block does not need to be updated in Flash, it should be written to 0xFF. The recommended
procedure for writing Flash in blocks is:
1. Disable interrupts.
2. Set the FLBWE bit (register PFE0CN) to select block write mode.
3. Set the PSWE bit (register PSCTL).
4. Clear the PSEE bit (register PSCTL).
5. Write the first key code to FLKEY: 0xA5.
6. Write the second key code to FLKEY: 0xF1.
7. Using the MOVX instruction, write the first data byte to the even block location (ending in 0b).
8. Write the first key code to FLKEY: 0xA5.
9. Write the second key code to FLKEY: 0xF1.
10.Using the MOVX instruction, write the second data byte to the odd block location (ending in 1b).
11. Clear the PSWE bit.
12.Re-enable interrupts.
Steps 5–10 must be repeated for each block to be written.
130
Rev. 1.1