Fix doc path
[opentx.git] / radio / src / storage / eeprom_common.h
blobee510674a8da6e1f1755db3bc05885bdb287b7df
1 /*
2 * Copyright (C) OpenTX
4 * Based on code named
5 * th9x - http://code.google.com/p/th9x
6 * er9x - http://code.google.com/p/er9x
7 * gruvin9x - http://code.google.com/p/gruvin9x
9 * License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
21 #define EEPROM_MIN_MODEL_SIZE 256
23 uint16_t eeLoadModelData(uint8_t id);
24 uint16_t eeLoadGeneralSettingsData();
26 bool eeModelExists(uint8_t id);
27 void eeLoadModel(uint8_t id);
28 bool eeConvert();
29 void ConvertModel(int id, int version);
30 uint8_t eeFindEmptyModel(uint8_t id, bool down);
31 void selectModel(uint8_t sub);
33 #if defined(CPUARM)
34 extern ModelHeader modelHeaders[MAX_MODELS];
35 void eeLoadModelHeader(uint8_t id, ModelHeader *header);
36 void eeLoadModelHeaders();
37 #else
38 #define eeLoadModelHeaders()
39 #endif
41 void storageReadRadioSettings();
42 void storageReadCurrentModel();