1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/native/board_config.c
2013-12-19 15:31:37 +01:00

40 lines
764 B
C

/**
* Native Board config.h implementation
*
* No functionality implemented at the moment.
*
* Copyright (C) 2013 Ludwig Ortmann
*
* This file is subject to the terms and conditions of the LGPLv2. See
* the file LICENSE in the top level directory for more details.
*
* @ingroup native_board
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
* @}
*/
#include <stdio.h>
#include <stdint.h>
#include "config.h"
/**
* XXX: loading not implemented
*/
void config_load(void)
{
printf("XXX: config_load(): not implemented\n");
return;
}
/**
* XXX: storing not implemented
*/
uint8_t config_save(void)
{
printf("XXX: config_save(): not implemented - your config will vanish on process termination\n");
return 1;
}