国产毛片a精品毛-国产毛片黄片-国产毛片久久国产-国产毛片久久精品-青娱乐极品在线-青娱乐精品

MSP430 Flash編程程序

發布時間:2008-10-22 21:55    發布者:MSP430
關鍵詞: Flash , MSP430
//flash.c文件 #define __FLASH__ #define __HW_v_2_1__ #include "flash.h" /************************************************************************************************* * This section contains all FLASH memory relevant functions: * * writeByte * * writeWord * * eraseFLASH * * saveInfoFlash * * changeInfo * * updateInfo * * * *************************************************************************************************/ /************************************************************************************************* Function : flash_writeFLASH Parameter : *dst : address within the FLASH page value : BYTE that has to be written to FLASH Date : 08.09.2001 / 17.11.2002 / 22.11.2002 Description : this function writes a byte to an address in FLASH memory warning: in FLASH only zeros can be written. if a bit value needs to be set to one from zero, the whole page has to be erased, thus setting all bits to one. then the value can be written correctly. this function does not perform. the necessary FLASH page erase. *************************************************************************************************/ void flash_writeByte(BYTE *dst, BYTE value) { FCTL2 = FWKEY | FSSEL0 | 20; //clock source is MCLK, divisor is 20 do { _NOP(); } while(FCTL3 & 0x0001); // wait for BUSY to reset FCTL3 = FWKEY; // reset the LOCK bit to enable program/erase FCTL1 = FWKEY | WRT; // set WRT for single acces *dst = value; // do the write as a byte return; } /************************************************************************************************* Function : flash_writeWord Parameter : *dst : address within the FLASH page value : BYTE that has to be written to FLASH Date : 22.11.2002 Description : this function writes a word to an address in FLASH memory warning: in FLASH only zeros can be written. if a bit value needs to be set to one from zero, the whole page has to be erased, thus setting all bits to one. then the value can be written correctly. this function does not perform. the necessary FLASH page erase. *************************************************************************************************/ void flash_writeWord(WORD *dst, WORD value) { FCTL2 = FWKEY | FSSEL0 | 20; //clock source is MCLK, divisor is 20 do { _NOP(); } while(FCTL3 & 0x0001); // wait for BUSY to reset FCTL3 = FWKEY; // reset the LOCK bit to enable program/erase FCTL1 = FWKEY | WRT; // set WRT for single acces *dst = value; // do the write as a word return; } /************************************************************************************************* Function : flash_eraseFLASH Parameter : *seg : any address within the FLASH page that is to be erased Date : 08.09.2001 / 19.11.2002 Description : this function erases a FLASH page *************************************************************************************************/ void flash_eraseFLASH(BYTE *seg) { FCTL2 = FWKEY | FSSEL0 | 20; //clock source is MCLK, divisor is 20 do { _NOP(); } while(FCTL3 & 0x0001); // wait for BUSY to reset FCTL3 = FWKEY; // reset the LOCK bit to enable program/erase FCTL1 = FWKEY | ERASE; // set single segment erase function *seg = 0xFF; // do a dummy write to start erase FCTL3 = FWKEY | LOCK; // lock the flash again return; } /************************************************************************************************* Function : flash_saveInfoFlash Parameter : *container : pointer to updated copy of data in RAM *flashPageBase : pointer to start of destination flash segment Date : 11.09.2002 / 26.11.2002 Description : saves info flash page 0 to RAM (!!! works only for INFO flash access !!!) *************************************************************************************************/ void flash_saveInfoFlash(BYTE *container, BYTE *flashPageBase) { BYTE i; flashPageBase = (BYTE*)((WORD)(flashPageBase) & 0xFF80); // wrap around for flash page base address for(i=0;i<128;i++) { container = *flashPage++; } } /************************************************************************************************* Function : flash_changeInfo Parameter : *container : pointer to updated copy of data in RAM *pointer : original pointer to variable that has to be updated value : new value for variable Date : 11.09.2002 / 26.11.2002 Description : chages a word in the info flash 0 data (in RAM) *************************************************************************************************/ void flash_changeInfo(BYTE* containerBase, BYTE *pointer, BYTE value) { // pointer points into flash page to variable that is supposed to be changed // subtract flash page offset (0x1000) and add scratch pad offset pointer = (BYTE*)(((WORD)(pointer) & 0x7F) + (WORD)(containerBase)); *pointer = value; } /************************************************************************************************* Function : flash_update Parameter : *container : pointer to updated copy of data in RAM *flashPageBase : pointer to start of destination flash segment Date : 11.09.2002 / 26.11.2002 Description : erases the flash page and writes the values from the RAM save area to flash (!!! works only in INFO flash !!!) *************************************************************************************************/ void flash_updateInfo(BYTE *container, BYTE *flashPageBase) { // assumes prior saving and changing of flash data BYTE i; flashPageBase = (BYTE*)((WORD)(flashPageBase) & 0xFF80); // wrap around for flash page base address _DINT(); flash_eraseFLASH(flashPageBase); for(i=0;i<128;i++) { flash_writeByte(flashPageBase++,*(container++)); } _EINT(); } /*flash.h文件 +-------------------------------------------------------------------------------+ : copyright (c) Jean Randhahn : +-------------------------------------------------------------------------------+ : Project : CANeye - Uni Rostock : : Compiler : IAR workbench GUI 2.31E / target descriptor v1.26A/WIN : +-------------------------------------------------------------------------------+ : : : class : flash : : File name : flash.h : : Target hardware : MSP430F148/9 : : : : File Editor : J. Randhahn : : Created : 06.08.2002 : : : : Description : : : : : : : : : : +-------------------------------------------------------------------------------+ : : : Modification history: : : : : : +-------------------------------------------------------------------------------+ */ #ifndef __FLASH_H__ #define __FLASH_H__ #ifdef __FLASH__ /*::::::::::::::::::::::::: START OF LOCAL PART ::::::::::::::::::::::::::::::::*/ /*----------------------- LOCAL INCLUDES ---------------------------------------*/ #include #include "type.h" /*----------------------- LOCAL DEFINITIONS ------------------------------------*/ /*----------------------- LOCAL FUNCTION DECLARATIONS --------------------------*/ void flash_eraseFLASH(BYTE *seg); void flash_writeWord(WORD *dst, WORD value); void flash_writeByte(BYTE *dst, BYTE value); void flash_saveInfoFlash(BYTE *container, BYTE *flashPage); void flash_changeInfo(BYTE* containerBase, BYTE *pointer, BYTE value); void flash_updateInfo(BYTE *container, BYTE *flashPageBase); /*----------------------- LOCAL CONSTANTS AND VARIABLES ------------------------*/ /*----------------------- PUBLIC VARIABLES WITH INITIALISATION -----------------*/ /*::::::::::::::::::::::::: END OF LOCAL PART ::::::::::::::::::::::::::::::::::*/ #else /*----------------------- PUBLIC VARIBALES INITIALIZED LOCALLY -----------------*/ #endif /*-------------------- PUBLIC DEFINITIONS --------------------------------------*/ /*-------------------- PUBLIC CONSTANTS AND VARIABLES --------------------------*/ /*-------------------- PUBLIC FUNCTION DECLARATIONS ----------------------------*/ extern void flash_eraseFLASH(BYTE *seg); extern void flash_writeWord(WORD *dst, WORD value); extern void flash_writeByte(BYTE *dst, BYTE value); extern void flash_saveInfoFlash(BYTE *container, BYTE *flashPage); extern void flash_changeInfo(BYTE* containerBase, BYTE *pointer, BYTE value); extern void flash_updateInfo(BYTE *container, BYTE *flashPageBase); #endif //type.h文件 /* START type definitions for convinience with microcontrollers ****************************/ typedef unsigned char BYTE; /* 8 bits */ typedef unsigned short WORD; /* 16 bits */ typedef unsigned long LONGWORD; /* 32 bits */ /* for dividing a WORD into two BYTEs */ typedef union _WORD_BYTE { WORD w; BYTE b[2]; } WORD_BYTE;
本文地址:http://m.qingdxww.cn/thread-2865-1-1.html     【打印本頁】

本站部分文章為轉載或網友發布,目的在于傳遞和分享信息,并不代表本網贊同其觀點和對其真實性負責;文章版權歸原作者及原出處所有,如涉及作品內容、版權和其它問題,我們將根據著作權人的要求,第一時間更正或刪除。
您需要登錄后才可以發表評論 登錄 | 立即注冊

廠商推薦

  • Microchip視頻專區
  • 使用SAM-IoT Wx v2開發板演示AWS IoT Core應用程序
  • 使用Harmony3加速TCP/IP應用的開發培訓教程
  • 集成高級模擬外設的PIC18F-Q71家族介紹培訓教程
  • 探索PIC16F13145 MCU系列——快速概覽
  • 貿澤電子(Mouser)專區

相關在線工具

相關視頻

關于我們  -  服務條款  -  使用指南  -  站點地圖  -  友情鏈接  -  聯系我們
電子工程網 © 版權所有   京ICP備16069177號 | 京公網安備11010502021702
快速回復 返回頂部 返回列表
主站蜘蛛池模板: 韩国福利在线观看 | 性生生活三级视频在线观看 | 亚洲国产第一区二区三区 | 和日本免费不卡在线v | 拍拍叫痛的无挡视频免费 | 日本免费高清在线观看播放 | 岛国片在线免费观看 | 亚洲香蕉在线观看 | 日本欧美一二三区色视频 | 岛国片在线免费观看 | 婷婷色六月 | a毛片在线还看免费网站 | 99久久99这里只有免费的精品 | 9191精品国产费久久 | 黄视频在线免费 | 久久91这里精品国产2020 | 亚洲欧美综合日韩字幕v在线 | 欧美成人香蕉在线观看 | 99re在线视频免费观看 | 欧美天堂色 | 亚洲激情视频 | 欧美激情视频二区三区 | 亚洲最新网址 | 污网站免费看 | 高h全肉动漫在线观看免费 高h大街上羞耻露出调教 | 卡一卡二卡三免费专区2 | 99爱精品视频 | 2020国产精品 | 亚洲国产高清视频 | 韩日一级 | h免费观看| 日韩免费观看的一级毛片 | 日本高清一区 | 99re这里只有热视频 | 成人性生交大片免费看中文 | 欧美性一区 | 算你色永久免费视频播放 | 日本国产一区 | 久久精品一区二区三区资源网 | 亚洲 欧美 91 | 青青青视频免费一区二区 |