2011-01-14 02:38:19 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup OpenPilotSystem OpenPilot System
|
|
|
|
* @brief These files are the core system files of OpenPilot.
|
|
|
|
* They are the ground layer just above PiOS. In practice, OpenPilot actually starts
|
|
|
|
* in the main() function of openpilot.c
|
|
|
|
* @{
|
|
|
|
* @addtogroup OpenPilotCore OpenPilot Core
|
|
|
|
* @brief This is where the OP firmware starts. Those files also define the compile-time
|
|
|
|
* options of the firmware.
|
|
|
|
* @{
|
|
|
|
* @file openpilot.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief Sets up and runs main OpenPilot tasks.
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* OpenPilot Includes */
|
|
|
|
#include "openpilot.h"
|
|
|
|
#include "uavobjectsinit.h"
|
|
|
|
#include "systemmod.h"
|
|
|
|
|
|
|
|
/* Task Priorities */
|
|
|
|
#define PRIORITY_TASK_HOOKS (tskIDLE_PRIORITY + 3)
|
|
|
|
|
|
|
|
/* Global Variables */
|
|
|
|
|
|
|
|
/* Prototype of PIOS_Board_Init() function */
|
|
|
|
extern void PIOS_Board_Init(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OpenPilot Main function:
|
|
|
|
*
|
|
|
|
* Initialize PiOS<BR>
|
|
|
|
* Create the "System" task (SystemModInitializein Modules/System/systemmod.c) <BR>
|
2011-06-14 06:49:17 +02:00
|
|
|
* Start FreeRTOS Scheduler (vTaskStartScheduler) (Now handled by caller)
|
2011-01-14 02:38:19 +01:00
|
|
|
* If something goes wrong, blink LED1 and LED2 every 100ms
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
/* NOTE: Do NOT modify the following start-up sequence */
|
|
|
|
/* Any new initialization functions should be added in OpenPilotInit() */
|
|
|
|
|
|
|
|
/* Brings up System using CMSIS functions, enables the LEDs. */
|
|
|
|
PIOS_SYS_Init();
|
2011-04-30 00:38:26 +02:00
|
|
|
|
2011-01-14 02:38:19 +01:00
|
|
|
/* Architecture dependant Hardware and
|
|
|
|
* core subsystem initialisation
|
|
|
|
* (see pios_board.c for your arch)
|
|
|
|
* */
|
|
|
|
PIOS_Board_Init();
|
2011-06-17 07:13:19 +02:00
|
|
|
|
2011-05-01 21:10:27 +02:00
|
|
|
#ifdef ERASE_FLASH
|
2011-04-30 15:17:44 +02:00
|
|
|
PIOS_Flash_W25X_EraseChip();
|
2011-05-14 20:03:31 +02:00
|
|
|
while(TRUE){};
|
2011-04-30 15:17:44 +02:00
|
|
|
#endif
|
|
|
|
|
2011-01-14 02:38:47 +01:00
|
|
|
/* Initialize modules */
|
2011-06-25 20:40:01 +02:00
|
|
|
MODULE_INITIALISE_ALL
|
2011-06-17 07:13:19 +02:00
|
|
|
|
2011-06-19 02:28:37 +02:00
|
|
|
return 0;
|
2011-06-17 07:13:19 +02:00
|
|
|
}
|
2011-01-14 02:38:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
* @}
|
2011-01-14 02:38:24 +01:00
|
|
|
*/
|
2011-01-14 02:38:19 +01:00
|
|
|
|