2011-02-14 19:15:25 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup OpenPilotBL OpenPilot BootLoader
|
|
|
|
* @brief These files contain the code to the OpenPilot MB Bootloader.
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
* @file main.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief This is the file with the main function of the OpenPilot BootLoader
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
/* Bootloader Includes */
|
|
|
|
#include <pios.h>
|
|
|
|
#include <bl_array.h>
|
|
|
|
#define MAX_WRI_RETRYS 3
|
|
|
|
/* Prototype of PIOS_Board_Init() function */
|
|
|
|
extern void PIOS_Board_Init(void);
|
|
|
|
extern void FLASH_Download();
|
2011-02-17 15:54:57 +01:00
|
|
|
void error(int);
|
2011-02-14 19:15:25 +01:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
|
|
|
PIOS_SYS_Init();
|
|
|
|
PIOS_Board_Init();
|
2011-02-15 18:42:24 +01:00
|
|
|
PIOS_LED_On(LED1);
|
2011-02-17 15:54:57 +01:00
|
|
|
PIOS_DELAY_WaitmS(3000);
|
2011-02-15 18:42:24 +01:00
|
|
|
PIOS_LED_Off(LED1);
|
|
|
|
|
|
|
|
/// Self overwrite check
|
|
|
|
uint32_t base_adress = SCB->VTOR;
|
2011-02-17 15:54:57 +01:00
|
|
|
if (0x08000000 + (sizeof(dataArray)) > base_adress)
|
|
|
|
error(LED1);
|
2011-02-15 18:42:24 +01:00
|
|
|
///
|
2011-02-17 15:54:57 +01:00
|
|
|
FLASH_Unlock();
|
2011-02-15 18:42:24 +01:00
|
|
|
|
|
|
|
/// Bootloader memory space erase
|
|
|
|
uint32_t pageAdress;
|
|
|
|
pageAdress = 0x08000000;
|
|
|
|
uint8_t fail = FALSE;
|
|
|
|
while ((pageAdress < base_adress) || (fail == TRUE)) {
|
|
|
|
for (int retry = 0; retry < MAX_DEL_RETRYS; ++retry) {
|
|
|
|
if (FLASH_ErasePage(pageAdress) == FLASH_COMPLETE) {
|
|
|
|
fail = FALSE;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
fail = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef STM32F10X_HD
|
|
|
|
pageAdress += 2048;
|
|
|
|
#elif defined (STM32F10X_MD)
|
|
|
|
pageAdress += 1024;
|
|
|
|
#endif
|
|
|
|
}
|
2011-02-14 19:15:25 +01:00
|
|
|
|
2011-02-15 18:42:24 +01:00
|
|
|
if (fail == TRUE)
|
2011-02-17 15:54:57 +01:00
|
|
|
error(LED1);
|
|
|
|
|
2011-02-15 18:42:24 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
|
|
|
|
/// Bootloader programing
|
2011-02-17 15:54:57 +01:00
|
|
|
for (int x = 0; x < sizeof(dataArray)/sizeof(uint32_t); ++x) {
|
2011-02-15 18:42:24 +01:00
|
|
|
int result = 0;
|
2011-02-17 15:54:57 +01:00
|
|
|
PIOS_LED_Toggle(LED1);
|
2011-02-14 19:15:25 +01:00
|
|
|
for (int retry = 0; retry < MAX_WRI_RETRYS; ++retry) {
|
|
|
|
if (result == 0) {
|
2011-02-15 18:42:24 +01:00
|
|
|
result = (FLASH_ProgramWord(0x08000000 + (x * 4), dataArray[x])
|
|
|
|
== FLASH_COMPLETE) ? 1 : 0;
|
2011-02-14 19:15:25 +01:00
|
|
|
}
|
|
|
|
}
|
2011-02-15 18:42:24 +01:00
|
|
|
if (result == 0)
|
2011-02-17 15:54:57 +01:00
|
|
|
error(LED1);
|
2011-02-14 19:15:25 +01:00
|
|
|
}
|
2011-02-15 18:42:24 +01:00
|
|
|
///
|
2011-02-17 15:54:57 +01:00
|
|
|
for (int x=0;x<3;++x) {
|
|
|
|
PIOS_LED_On(led);
|
|
|
|
PIOS_DELAY_WaitmS(1000);
|
|
|
|
PIOS_LED_Off(led);
|
|
|
|
PIOS_DELAY_WaitmS(1000);
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
PIOS_DELAY_WaitmS(1000);
|
|
|
|
}
|
2011-02-14 19:15:25 +01:00
|
|
|
|
2011-02-15 18:42:24 +01:00
|
|
|
}
|
2011-02-17 15:54:57 +01:00
|
|
|
void error(int led) {
|
2011-02-15 18:42:24 +01:00
|
|
|
for (;;) {
|
2011-02-17 15:54:57 +01:00
|
|
|
PIOS_LED_On(led);
|
2011-02-15 18:42:24 +01:00
|
|
|
PIOS_DELAY_WaitmS(500);
|
2011-02-17 15:54:57 +01:00
|
|
|
PIOS_LED_Off(led);
|
2011-02-15 18:42:24 +01:00
|
|
|
PIOS_DELAY_WaitmS(500);
|
2011-02-14 19:15:25 +01:00
|
|
|
}
|
|
|
|
}
|