#include <msp430x14x.h>
#include <io.h>
#include <signal.h>
#include "flash.h"
#include "eeprom.h"
Functions | |
| void | flash_setup (void) |
| Setup function to be called before any of the flash programming functions. | |
| void | flash_done (void) |
| Function that is to be called after flashing is done. | |
| void | flash_clear (unsigned short *ptr) |
| Clear a 16-bit word in flash ROM. | |
| void | flash_write (unsigned short *ptr, unsigned short word) |
| Write a 16-bit word to flash ROM. | |
|
|
Clear a 16-bit word in flash ROM. This function clears a 16-bit word in flash ROM. The function flash_setup() must have been called first.
|
|
||||||||||||
|
Write a 16-bit word to flash ROM. This function writes a 16-bit word to flash ROM. The function flash_setup() must have been called first.
|
1.3.6