rt-thread/bsp/stm32/stm32mp157a-st-discovery/board/board.h

53 lines
1.2 KiB
C
Raw Normal View History

2020-06-20 14:08:14 +08:00
/*
2021-03-14 15:33:55 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
2020-06-20 14:08:14 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2018-11-5 SummerGift first version
* 2019-04-09 WillianChan add stm32f469-st-disco bsp
*/
#ifndef __BOARD_H__
#define __BOARD_H__
#include <rtthread.h>
#include "stm32mp1xx.h"
#include "stm32mp1xx_hal.h"
#include "drv_common.h"
#include "drv_gpio.h"
#ifdef __cplusplus
extern "C" {
#endif
2021-03-14 15:33:55 +08:00
#define STM32_FLASH_START_ADRESS ((uint32_t)0x10000000)
#define STM32_FLASH_SIZE (192 * 1024)
2020-06-20 14:08:14 +08:00
#define STM32_FLASH_END_ADDRESS ((uint32_t)(STM32_FLASH_START_ADRESS + STM32_FLASH_SIZE))
2021-03-14 15:33:55 +08:00
2020-12-17 10:31:22 +08:00
#define STM32_SRAM_SIZE (64)
2021-03-14 15:33:55 +08:00
#define STM32_SRAM_END (0x10030000 + 64 * 1024)
2020-12-17 10:31:22 +08:00
#if defined(__ARMCC_VERSION)
2020-12-17 10:31:22 +08:00
extern int Image$$RW_IRAM1$$ZI$$Limit;
#define HEAP_BEGIN (&Image$$RW_IRAM1$$ZI$$Limit)
#elif __ICCARM__
#pragma section="CSTACK"
#define HEAP_BEGIN (__segment_end("CSTACK"))
#else
extern int __bss_end;
#define HEAP_BEGIN (&__bss_end)
2020-06-20 14:08:14 +08:00
#endif
2020-09-23 13:42:09 +08:00
#define HEAP_END STM32_SRAM_END
2020-06-20 14:08:14 +08:00
void SystemClock_Config(void);
extern void _Error_Handler(char *s, int num);
#ifdef __cplusplus
}
#endif
#endif