⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flashutils.h

📁 msp430 test code and examples for using a 5438
💻 H
字号:
/**********************************************************************//**
    Filename: flashUtils.h

    Copyright 2008 Texas Instruments, Inc.
***************************************************************************/
#ifndef FLASH_UTILS_H
#define FLASH_UTILS_H
#include <msp430x54x.h>

/*-------------------------------------------------------------
 *                       Macros 
 * ------------------------------------------------------------*/ 
#define FLASH_UNLOCK    FCTL3 = FWKEY; FCTL1 = FWKEY + WRT; 
#define FLASH_LOCK      FCTL1 = FWKEY; FCTL3 = FWKEY +  LOCK; 
#define FLASH_WRITE_INFOB(destination, source) st( FLASH_UNLOCK_INFOB;  destination = source; while (FCTL3 & BUSY ); FLASH_LOCK_INFOB; )  

/*-------------------------------------------------------------
 *                  Function Prototypes 
 * ------------------------------------------------------------*/ 
void flashEraseBank(unsigned long FarPtr);
void flashEraseSegment(unsigned long FarPtr);
void flashErase(unsigned long Memstart, unsigned long Memend);

#endif 


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -