#include <string.h>#include <signal.h>#include <stdarg.h>#include "contiki-conf.h"#include <msp430/flash.h>#include "infomem.h"Go to the source code of this file.
Functions | |
| void | infomem_read (void *buffer, unsigned int offset, unsigned char size) |
| Read bytes from infomemory. | |
| bool | infomem_write (unsigned int offset, unsigned char count,...) |
| Write bytes to infomemory. | |
Definition in file infomem.c.
| void infomem_read | ( | void * | buffer, | |
| unsigned int | offset, | |||
| unsigned char | size | |||
| ) |
| bool infomem_write | ( | unsigned int | offset, | |
| unsigned char | count, | |||
| ... | ||||
| ) |
Write bytes to infomemory.
| [in] | offset | Offset in infomemory (0-254) |
| [in] | count | Number of items following each item is a pair pointer, length |
Example: Infomem_write( 0, 2, &a,3, &b,1 );
1.6.1