1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-12 06:54:24 +01:00
2012-10-18 16:01:53 +02:00

11 lines
205 B
C

#ifndef NVRAM_H
#define NVRAM_H
#include <stdint.h>
int nvram_init(void);
int nvram_read(uint32_t addr, void *data, uint32_t len);
int nvram_write(uint32_t addr, const void *data, uint32_t len);
#endif