mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
37 lines
642 B
C
37 lines
642 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 board_mulle
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Mulle config module implementation
|
|
*
|
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
|
*
|
|
* @note Waiting for PR #2353 (NVRAM API) before implementing this.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include "config.h"
|
|
|
|
void config_load(void)
|
|
{
|
|
/* TODO: Implement */
|
|
}
|
|
|
|
uint8_t config_save(void)
|
|
{
|
|
/* TODO: Implement */
|
|
return 0;
|
|
}
|