mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
4ae819c011
Initially supports only Mulles with serial number > 220 (due to missing MK60DN256ZVLL10 support in k60). See also: https://github.com/RIOT-OS/RIOT/wiki/Board%3A-Mulle Signed-off-by: Joakim Gebart <joakim.gebart@eistec.se>
37 lines
637 B
C
37 lines
637 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 Gebart <joakim.gebart@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;
|
|
}
|