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

📄 infomem.c

📁 伟大的Contiki工程, 短小精悍 的操作系统, 学习编程不可不看
💻 C
字号:
/*Copyright 2007, Freie Universitaet Berlin. All rights reserved.These sources were developed at the Freie Universit鋞 Berlin, ComputerSystems and Telematics group.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditions aremet:- Redistributions of source code must retain the above copyrightnotice, this list of conditions and the following disclaimer.- Redistributions in binary form must reproduce the above copyrightnotice, this list of conditions and the following disclaimer in thedocumentation and/or other materials provided with the distribution. - Neither the name of Freie Universitaet Berlin (FUB) nor the names of itscontributors may be used to endorse or promote products derived fromthis software without specific prior written permission.This software is provided by FUB and the contributors on an "as is"basis, without any representations or warranties of any kind, expressor implied including, but not limited to, representations orwarranties of non-infringement, merchantability or fitness for aparticular purpose. In no event shall FUB or contributors be liablefor any direct, indirect, incidental, special, exemplary, orconsequential damages (including, but not limited to, procurement ofsubstitute goods or services; loss of use, data, or profits; orbusiness interruption) however caused and on any theory of liability,whether in contract, strict liability, or tort (including negligenceor otherwise) arising in any way out of the use of this software, evenif advised of the possibility of such damage.This implementation was developed by the CST group at the FUB.For documentation and questions please use the web sitehttp://scatterweb.mi.fu-berlin.de and the mailinglistscatterweb@lists.spline.inf.fu-berlin.de (subscription via the Website).Berlin, 2007*//** * @file		infomem.c * @addtogroup	storage * @brief		MSP430 Infomemory Storage * @author		Michael Baar	<baar@inf.fu-berlin.de> * * Functions to store and read data from the two infomemories (2 x 128 Bytes). * Offset addresses start at zero, size has a maximum of 128, write operations * across both blocks are not allowed. */#include <string.h>#include <signal.h>#include <stdarg.h>#include "contiki-conf.h"#include <msp430/flash.h>#include "infomem.h"voidinfomem_read(void *buffer, unsigned int offset, unsigned char size){  uint8_t *address = (uint8_t *) INFOMEM_START + offset;  memcpy(buffer, address, size);}boolinfomem_write(unsigned int offset, unsigned char count, ...){  char backup[INFOMEM_BLOCK_SIZE];	  uint8_t *buffer;  uint16_t i;  uint8_t *flash;  va_list argp;  uint16_t size;  uint8_t *data;  int s;  if (offset > (2 * INFOMEM_BLOCK_SIZE))    return FALSE;  flash = (uint8_t *) INFOMEM_START + offset;  s = splhigh();  // backup into RAM  memcpy(backup, flash, INFOMEM_BLOCK_SIZE);  // merge backup with new data  va_start(argp, count);  buffer = (uint8_t *) backup;  for (i = 0; i < count; i++) {    data = va_arg(argp, uint8_t*);    size = va_arg(argp, uint16_t);    memcpy(buffer, data, size);    buffer += size;  }  va_end(argp);  // init flash access  FCTL2 = FWKEY + FSSEL1 + FN2;  FCTL3 = FWKEY;  // erase flash  FCTL1 = FWKEY + ERASE;  *flash = 0;  // write flash  FCTL1 = FWKEY + WRT;  buffer = (uint8_t *) backup;  for (i = 0; i < INFOMEM_BLOCK_SIZE; i++) {    *flash++ = *buffer++;  }  FCTL1 = FWKEY;  FCTL3 = FWKEY + LOCK;  splx(s);  return TRUE;}

⌨️ 快捷键说明

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