/* * 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 * * @note Waiting for PR #2353 (NVRAM API) before implementing this. */ #include #include #include "config.h" void config_load(void) { /* TODO: Implement */ } uint8_t config_save(void) { /* TODO: Implement */ return 0; }