mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
140 lines
5.9 KiB
C
140 lines
5.9 KiB
C
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2012-2015 PX4 Development Team. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* @file boot_config.h
|
|
*
|
|
* bootloader definitions that configures the behavior and options
|
|
* of the Boot loader
|
|
* This file is relies on the parent folder's boot_config.h file and defines
|
|
* different usages of the hardware for bootloading
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
/************************************************************************************
|
|
* Included Files
|
|
************************************************************************************/
|
|
|
|
/* Bring in the board_config.h definitions
|
|
* todo:make this be pulled in from a targed's build
|
|
* files in nuttx*/
|
|
|
|
#include "../board_config.h"
|
|
#include "uavcan.h"
|
|
#include <nuttx/compiler.h>
|
|
#include <stdint.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
#define OPT_PREFERRED_NODE_ID ANY_NODE_ID
|
|
|
|
//todo:wrap OPT_x in in ifdefs for command line definitions
|
|
#define OPT_TBOOT_MS 5000
|
|
#define OPT_NODE_STATUS_RATE_MS 800
|
|
#define OPT_NODE_INFO_RATE_MS 50
|
|
#define OPT_BL_NUMBER_TIMERS 7
|
|
|
|
/*
|
|
* This Option set is set to 1 ensure a provider of firmware has an
|
|
* opportunity update the node's firmware.
|
|
* This Option is the default policy and can be overridden by
|
|
* a jumper
|
|
* When this Policy is set, the node will ignore tboot and
|
|
* wait indefinitely for a GetNodeInfo request before booting.
|
|
*
|
|
* OPT_WAIT_FOR_GETNODEINFO_JUMPER_GPIO_INVERT is used to allow
|
|
* the polarity of the jumper to be True Active
|
|
*
|
|
* wait OPT_WAIT_FOR_GETNODEINFO OPT_WAIT_FOR_GETNODEINFO_JUMPER_GPIO
|
|
* Jumper
|
|
* yes 1 0 x
|
|
* yes 1 1 Active
|
|
* no 1 1 Not Active
|
|
* no 0 0 X
|
|
* yes 0 1 Active
|
|
* no 0 1 Not Active
|
|
*
|
|
*/
|
|
#define OPT_WAIT_FOR_GETNODEINFO 0
|
|
#define OPT_WAIT_FOR_GETNODEINFO_JUMPER_GPIO 1
|
|
#define OPT_WAIT_FOR_GETNODEINFO_JUMPER_GPIO_INVERT 0
|
|
|
|
#define OPT_ENABLE_WD 1
|
|
|
|
#define OPT_RESTART_TIMEOUT_MS 20000
|
|
|
|
/* Reserved for the Boot loader */
|
|
#define OPT_BOOTLOADER_SIZE_IN_K (1024*16)
|
|
|
|
/* Reserved for the application out of the total
|
|
* system flash minus the BOOTLOADER_SIZE_IN_K
|
|
*/
|
|
#define OPT_APPLICATION_RESERVER_IN_K (32*1024) /* Parameters will use the 2nd, 3rd 16KiB sectors*/
|
|
|
|
#define OPT_APPLICATION_IMAGE_OFFSET (OPT_BOOTLOADER_SIZE_IN_K + OPT_APPLICATION_RESERVER_IN_K)
|
|
#define OPT_APPLICATION_IMAGE_LENGTH (FLASH_SIZE-(OPT_BOOTLOADER_SIZE_IN_K+OPT_APPLICATION_RESERVER_IN_K))
|
|
|
|
|
|
#define FLASH_BASE STM32_FLASH_BASE
|
|
#define FLASH_NUMBER_PAGES STM32_FLASH_NPAGES
|
|
#define FLASH_PAGE_SIZE STM32_FLASH_PAGESIZE
|
|
#define FLASH_SIZE ((4*16*1024) + (1*64*1024) + (3*128*1024))
|
|
|
|
#define APPLICATION_LOAD_ADDRESS (FLASH_BASE + OPT_APPLICATION_IMAGE_OFFSET)
|
|
#define APPLICATION_SIZE (FLASH_SIZE-OPT_APPLICATION_IMAGE_OFFSET)
|
|
#define APPLICATION_LAST_8BIT_ADDRRESS ((uint8_t *)((APPLICATION_LOAD_ADDRESS+APPLICATION_SIZE)-sizeof(uint8_t)))
|
|
#define APPLICATION_LAST_32BIT_ADDRRESS ((uint32_t *)((APPLICATION_LOAD_ADDRESS+APPLICATION_SIZE)-sizeof(uint32_t)))
|
|
#define APPLICATION_LAST_64BIT_ADDRRESS ((uint64_t *)((APPLICATION_LOAD_ADDRESS+APPLICATION_SIZE)-sizeof(uint64_t)))
|
|
|
|
/* If this board uses big flash that have large sectors */
|
|
|
|
#if defined(CONFIG_STM32_FLASH_CONFIG_E) || \
|
|
defined(CONFIG_STM32_FLASH_CONFIG_F) || \
|
|
defined(CONFIG_STM32_FLASH_CONFIG_G) || \
|
|
defined(CONFIG_STM32_FLASH_CONFIG_I)
|
|
#define OPT_USE_YIELD
|
|
#endif
|
|
|
|
/* Bootloader Option*****************************************************************
|
|
*
|
|
* GPIO Function MPU Board
|
|
* Pin # Name
|
|
* -- ----- -------------------------------- ----------------------------
|
|
* PB[07] PB7/TIM2_CH2/TIM4_CH4/TIM11_CH1/I2C1_SDA 59 WAIT_GETNODEINFO
|
|
*/
|
|
#define GPIO_GETNODEINFO_JUMPER GPIO_WAIT_GETNODEINFO
|