<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設計應用 > MSP430單片機FLASH讀寫操作例子

          MSP430單片機FLASH讀寫操作例子

          作者: 時間:2016-11-22 來源:網(wǎng)絡 收藏
          //******************************************************************************
          //MSP430F149
          // M. Mitchell
          // Texas Instruments Inc.
          // Feb 2005
          // Built with IAR Embedded Workbench Version: 3.21A
          //******************************************************************************

          #include 430x14x.h>

          char value; // 8-bit value to write to segment A

          // Function prototypes
          void write_SegA (char value);
          void copy_A2B (void);

          void main(void)
          {
          WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
          FCTL2 = FWKEY + FSSEL0 + FN0; // MCLK/2 for Flash Timing Generator
          value = 0; // Initialize value

          while(1) // Repeat forever
          {
          write_SegA(value++); // Write segment A, increment value
          copy_A2B(); // Copy segment A to B
          _NOP(); // SET BREAKPOINT HERE
          }
          }

          void write_SegA (char value)
          {
          char *Flash_ptr; // Flash pointer
          unsigned int i;

          Flash_ptr = (char *) 0x1080; // Initialize Flash pointer
          FCTL1 = FWKEY + ERASE; // Set Erase bit
          FCTL3 = FWKEY; // Clear Lock bit
          *Flash_ptr = 0; // Dummy write to erase Flash segment

          FCTL1 = FWKEY + WRT; // Set WRT bit for write operation

          for (i=0; i<128; i++)
          {
          *Flash_ptr++ = value;// Write value to flash
          }

          FCTL1 = FWKEY; // Clear WRT bit
          FCTL3 = FWKEY + LOCK; // Set LOCK bit
          }


          void copy_A2B (void)
          {
          char *Flash_ptrA; // Segment A pointer
          char *Flash_ptrB; // Segment B pointer
          unsigned int i;

          Flash_ptrA = (char *) 0x1080; // Initialize Flash segment A pointer
          Flash_ptrB = (char *) 0x1000; // Initialize Flash segment B pointer
          FCTL1 = FWKEY + ERASE; // Set Erase bit
          FCTL3 = FWKEY; // Clear Lock bit
          *Flash_ptrB = 0; // Dummy write to erase Flash segment B
          FCTL1 = FWKEY + WRT; // Set WRT bit for write operation

          for (i=0; i<128; i++)
          {
          *Flash_ptrB++ = *Flash_ptrA++; // Copy value segment A to segment B
          }

          FCTL1 = FWKEY; // Clear WRT bit
          FCTL3 = FWKEY + LOCK; // Set LOCK bit
          }


          評論


          技術(shù)專區(qū)

          關閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();