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

40 lines
781 B
C
Raw Normal View History

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