/** * Native Board config.h implementation * * 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. * * @ingroup native * @{ * @file * @author Ludwig Ortmann * @} */ #include #include #include void config_load(void) { printf("XXX: config_load(): not implemented\n"); return; } uint8_t config_save(void) { printf("XXX: config_save(): not implemented - your config will vanish on process termination\n"); return 1; }