Rev 50 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
/*
* nvram.h
*
* Created on: 4 Jun 2017
* Author: Mike
*/
#pragma once
#if defined __cplusplus
extern "C" {
#endif
extern void WriteUint16NVRAM(uint32_t Address, uint16_t data);
// define a pointer to be set up by the linker, pointing at the NVRAM base address used for data
extern void WriteUint32NVRAM(uint32_t Address, uint32_t data);
#define NVRAM_BASE (uint8_t *)(&NVRAM_Base[0])
#if defined __cplusplus
}
#endif