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
|
|
|
|
*
|
2013-11-23 13:11:23 +01:00
|
|
|
* This file is subject to the terms and conditions of the LGPLv2. See
|
|
|
|
* the file LICENSE in the top level directory for more details.
|
2013-03-06 10:48:14 +01:00
|
|
|
*
|
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>
|
|
|
|
|
2013-12-16 17:54:58 +01:00
|
|
|
#include "config.h"
|
2013-03-06 01:10:50 +01:00
|
|
|
|
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;
|
|
|
|
}
|