mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Alexandre Abadie
70802fc652
- replace brief with name where required - remove some unwanted empty lines - fix missing closing doxygen name block
45 lines
920 B
C
45 lines
920 B
C
/*
|
|
* Copyright (C) 2015 Eistec AB
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License v2.1. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup boards_mulle
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief NVRAM offsets for the Eistec Mulle IoT board
|
|
*
|
|
* @author Joakim Gebart <joakim.gebart@eistec.se>
|
|
*/
|
|
|
|
#ifndef MULLE_NVRAM_H
|
|
#define MULLE_NVRAM_H
|
|
|
|
#include "nvram.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum mulle_nvram_address {
|
|
/** @brief NVRAM magic number, used to identify an initialized FRAM device. */
|
|
MULLE_NVRAM_MAGIC = 0x0000,
|
|
/** @brief Reboot counter */
|
|
MULLE_NVRAM_BOOT_COUNT = 0x0004,
|
|
} mulle_nvram_address_t;
|
|
|
|
#define MULLE_NVRAM_MAGIC_EXPECTED (0x4c4c554dul) /* == "MULL" in ASCII */
|
|
|
|
extern nvram_t *mulle_nvram;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MULLE_NVRAM_H */
|
|
/** @} */
|