mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-12 20:08:48 +01:00
48 lines
2.2 KiB
C
48 lines
2.2 KiB
C
|
/******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
|
||
|
* File Name : hw_config.h
|
||
|
* Author : MCD Application Team
|
||
|
* Version : V3.2.1
|
||
|
* Date : 07/05/2010
|
||
|
* Description : Hardware Configuration & Setup
|
||
|
********************************************************************************
|
||
|
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
|
||
|
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
|
||
|
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
|
||
|
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
|
||
|
* CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
|
||
|
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
|
||
|
*******************************************************************************/
|
||
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
||
|
#ifndef __HW_CONFIG_H
|
||
|
#define __HW_CONFIG_H
|
||
|
/* Includes ------------------------------------------------------------------*/
|
||
|
/* Exported types ------------------------------------------------------------*/
|
||
|
/* Exported constants --------------------------------------------------------*/
|
||
|
/* Flash memory address from where user application will be loaded */
|
||
|
#define ApplicationAddress 0x08003000
|
||
|
|
||
|
/* Exported macro ------------------------------------------------------------*/
|
||
|
/* Exported functions ------------------------------------------------------- */
|
||
|
void Set_System(void);
|
||
|
void Set_USBClock(void);
|
||
|
void Enter_LowPowerMode(void);
|
||
|
void Leave_LowPowerMode(void);
|
||
|
void USB_Cable_Config (FunctionalState NewState);
|
||
|
void USB_Interrupts_Config(void);
|
||
|
|
||
|
void DFU_Button_Config(void);
|
||
|
uint8_t DFU_Button_Read(void);
|
||
|
|
||
|
void Reset_Device(void);
|
||
|
void SMI_FLASH_Init(void);
|
||
|
void SMI_FLASH_SectorErase(uint32_t Address);
|
||
|
void SMI_FLASH_WordWrite(uint32_t Address, uint32_t Data);
|
||
|
void SMI_FLASH_PageWrite(uint32_t Address, uint32_t* wBuffer);
|
||
|
void Get_SerialNum(void);
|
||
|
|
||
|
/* External variables --------------------------------------------------------*/
|
||
|
|
||
|
#endif /*__HW_CONFIG_H*/
|
||
|
|
||
|
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
|