Back
//******************************************************************************
// MSP430x24x Demo - Flash In-System Programming w/ EEI, Copy SegD to B/C
//
// Description: This program first erases flash seg D, then it increments all
// values in seg D, then it erases segs B,C and copies D to those locations
// The EEI bit is set for the Flash Erase Cycles. This does allow the Timer_A
// Interrupts to be handled also during the Segment erase time. Starting
// addresses of segments defined in this code: Seg B-0x1080,
// Seg C-0x1040, Seg D-0x1000.
// ACLK = n/a, MCLK = SMCLK = CALxxx_1MHZ = 1MHz
// //* Set Breakpoint on NOP in the Mainloop to avoid Stressing Flash *//
//
// MSP430F249
// -----------------
// /|\| XIN|-
// | | |
// --|RST XOUT|-
// | |
//
// B. Nisarga
// Texas Instruments Inc.
// September 2007
// Built with CCE Version: 3.2.0 and IAR Embedded Workbench Version: 3.42A
//******************************************************************************
#include "msp430x24x.h"
char value; // 8-bit value to write to seg D
// Function prototypes
void write_SegD(char value);
void copy_D2B(void);
void copy_D2C(void);
void main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
if (CALBC1_1MHZ ==0xFF || CALDCO_1MHZ == 0xFF)
{
while(1); // If calibration constants erased
// do not load, trap CPU!!
}
BCSCTL1 = CALBC1_1MHZ; // Set DCO to 1MHz
DCOCTL = CALDCO_1MHZ;
FCTL2 = FWKEY + FSSEL0 + FN1; // MCLK/3 for Flash Timing Generator
P1DIR |= 0x01; // P1.0 output - LED
TACCTL0 = CCIE; // TACCR0 interrupt enabled
TACCR0 = 50000;
TACTL = TASSEL_2 + MC_1; // SMCLK, upmode
value = 0; // Initialize value
__enable_interrupt(); // Enable interrupts
while(1) // Repeat forever
{
write_SegD(value++); // Write segment D, increment value
copy_D2B(); // Copy segment D to B
copy_D2C(); // Copy segment D to C
__no_operation(); // Set breakpoint here
}
}
void write_SegD(char value)
{
char *Flash_ptr; // Flash pointer
unsigned int i;
Flash_ptr = (char *)0x1000; // Initialize Flash pointer
FCTL3 = FWKEY; // Clear Lock bit
FCTL1 = FWKEY + ERASE + EEI; // Set Erase bit, allow interrupts
*Flash_ptr = 0; // Dummy write to erase Flash seg
FCTL1 = FWKEY + WRT; // Set WRT bit for write operation
for (i = 0; i < 64; i++)
{
*Flash_ptr++ = value; // Write value to flash
}
FCTL1 = FWKEY; // Clear WRT bit
FCTL3 = FWKEY + LOCK; // Set LOCK bit
}
void copy_D2B(void)
{
char *Flash_ptrB; // Segment B pointer
char *Flash_ptrD; // Segment D pointer
unsigned int i;
Flash_ptrB = (char *)0x1080; // Initialize Flash segment B ptr
Flash_ptrD = (char *)0x1000; // Initialize Flash segment D ptr
FCTL3 = FWKEY; // Clear LOCK bit
FCTL1 = FWKEY + ERASE + EEI; // Set Erase bit, allow interrupts
*Flash_ptrB = 0; // Dummy write to erase Flash seg B
FCTL1 = FWKEY + WRT; // Set WRT bit for write operation
for (i = 0; i < 64; i++)
{
*Flash_ptrB++ = *Flash_ptrD++; // copy value segment D to seg B
}
FCTL1 = FWKEY; // Clear WRT bit
FCTL3 = FWKEY + LOCK; // Set LOCK bit
}
void copy_D2C(void)
{
char *Flash_ptrC; // Segment C pointer
char *Flash_ptrD; // Segment D pointer
unsigned int i;
Flash_ptrC = (char *)0x1040; // Initialize Flash segment C ptr
Flash_ptrD = (char *)0x1000; // Initialize Flash segment D ptr
FCTL3 = FWKEY; // Clear LOCK bit
FCTL1 = FWKEY + ERASE + EEI; // Set Erase bit, allow interrupts
*Flash_ptrC = 0; // Dummy write to erase Flash seg C
FCTL1 = FWKEY + WRT; // Set WRT bit for write operation
for (i = 0; i < 64; i++)
{
*Flash_ptrC++ = *Flash_ptrD++; // copy value segment D to seg C
}
FCTL1 = FWKEY; // Clear WRT bit
FCTL3 = FWKEY + LOCK; // Set LOCK bit
}
// Timer A0 interrupt service routine
#pragma vector=TIMERA0_VECTOR
__interrupt void Timer_A(void)
{
P1OUT ^= 0x01; // Toggle P1.0
}
|