2009-11-28 10:28:11 +01:00
|
|
|
/**
|
2009-11-29 11:03:08 +01:00
|
|
|
******************************************************************************
|
2009-11-28 12:25:16 +01:00
|
|
|
*
|
2009-11-29 11:03:08 +01:00
|
|
|
* @file pios_settings.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2009.
|
|
|
|
* @brief Gets and sets PiOS settings, normally from SDCard.
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
2009-11-30 10:26:01 +01:00
|
|
|
* @defgroup PIOS_SETTINGS Settings Functions
|
2009-11-29 13:38:42 +01:00
|
|
|
* @{
|
2009-11-29 11:03:08 +01:00
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2009-11-28 10:28:11 +01:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2009-11-29 07:09:33 +01:00
|
|
|
|
2009-11-28 10:28:11 +01:00
|
|
|
/* Project Includes */
|
|
|
|
#include "pios.h"
|
|
|
|
|
2009-11-29 07:09:33 +01:00
|
|
|
|
|
|
|
/* Private Function Prototypes */
|
|
|
|
|
|
|
|
|
2009-11-28 10:28:11 +01:00
|
|
|
/* Local Variables */
|
2009-11-28 15:16:50 +01:00
|
|
|
SettingsTypeDef Settings;
|
2009-11-28 10:28:11 +01:00
|
|
|
|
2009-11-29 07:09:33 +01:00
|
|
|
|
2009-11-29 08:15:59 +01:00
|
|
|
/**
|
2009-12-21 05:10:50 +01:00
|
|
|
* Populate System global Settings into Structs using MinIni, defaults are also set here via macros from pios_config.h
|
2009-11-29 08:15:59 +01:00
|
|
|
*/
|
2009-11-29 15:21:50 +01:00
|
|
|
/* Value Reading: ini_getl("Section", "Key", (DefaultValue), IniFile); */
|
2009-11-28 15:16:50 +01:00
|
|
|
/* String Reading: ini_gets("Section", "Key", "DefaultValue", StrBuffer, sizearray(StrBuffer), IniFile); */
|
2009-12-08 03:13:21 +01:00
|
|
|
void PIOS_Settings_Load(void)
|
2009-11-28 15:16:50 +01:00
|
|
|
{
|
2009-12-03 22:30:53 +01:00
|
|
|
/* Unused yet, until we load strings
|
2009-11-28 15:16:50 +01:00
|
|
|
char StrBuffer[100];
|
|
|
|
long Result;
|
2009-12-03 22:30:53 +01:00
|
|
|
*/
|
2009-11-28 15:16:50 +01:00
|
|
|
|
|
|
|
/* Section: GPS */
|
2010-01-21 03:04:15 +01:00
|
|
|
Settings.GPS.Baudrate = (uint32_t) ini_getl("GPS", "Baudrate", GPS_BAUDRATE, SETTINGS_FILE);
|
2010-01-23 18:31:14 +01:00
|
|
|
|
2009-11-28 15:16:50 +01:00
|
|
|
/* Section: Telemetry */
|
2010-01-21 03:04:15 +01:00
|
|
|
Settings.Telem.Baudrate = (uint32_t) ini_getl("Telemetry", "Baudrate", TELEM_BAUDRATE, SETTINGS_FILE);
|
2010-01-23 18:31:14 +01:00
|
|
|
|
2009-12-01 18:15:33 +01:00
|
|
|
/* Section: Auxillary_USART */
|
|
|
|
Settings.AuxUSART.Enabled = (bool) ini_getl("Auxillary_USART", "Enabled", AUXUART_ENABLED, SETTINGS_FILE);
|
|
|
|
Settings.AuxUSART.Baudrate = (uint32_t) ini_getl("Auxillary_USART", "Baudrate", AUXUART_BAUDRATE, SETTINGS_FILE);
|
2010-01-23 18:31:14 +01:00
|
|
|
|
2009-12-03 22:30:53 +01:00
|
|
|
/* Section: Servos */
|
|
|
|
Settings.Servos.PositionMin = (uint16_t) ini_getl("Servos", "PositionMin", SERVOS_POSITION_MIN, SETTINGS_FILE);
|
|
|
|
Settings.Servos.PositionMax = (uint16_t) ini_getl("Servos", "PositionMax", SERVOS_POSITION_MAX, SETTINGS_FILE);
|
2009-11-28 15:16:50 +01:00
|
|
|
}
|
2009-11-30 11:07:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dump Settings struct contents to UART
|
2009-12-02 07:44:53 +01:00
|
|
|
* \param[in] USARTx USART name (GPS, TELEM, AUX)
|
2009-11-30 11:07:05 +01:00
|
|
|
*/
|
2009-12-08 03:13:21 +01:00
|
|
|
void PIOS_Settings_Dump(USART_TypeDef* USARTx)
|
2009-11-30 11:07:05 +01:00
|
|
|
{
|
|
|
|
/* Implement once UART is fully implemented */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if settings files exist on the drive
|
|
|
|
* \return 0 All files found
|
|
|
|
* \return >0 Number of files missing
|
|
|
|
*/
|
2009-12-24 04:03:24 +01:00
|
|
|
int32_t PIOS_Settings_CheckForFiles(void)
|
2009-11-30 11:07:05 +01:00
|
|
|
{
|
2010-01-23 18:31:14 +01:00
|
|
|
// FILINFO DummyVar;
|
|
|
|
// int MissingCount = 0;
|
|
|
|
//
|
|
|
|
// /* Check for existence of SETTINGS_FILE */
|
|
|
|
// if(f_stat(SETTINGS_FILE, &DummyVar) != FR_OK) {
|
|
|
|
// MissingCount++;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// /* If one or more files are missing, return the number of missing files */
|
|
|
|
// if(MissingCount > 0)
|
|
|
|
// {
|
|
|
|
// return MissingCount;
|
|
|
|
// }
|
|
|
|
//
|
2009-11-30 11:07:05 +01:00
|
|
|
/* All files found */
|
|
|
|
return 0;
|
2009-12-24 04:03:24 +01:00
|
|
|
}
|