在线时间348 小时
UID219090
ST金币0
蝴蝶豆45
注册时间2008-4-2
论坛元老
- 最后登录
- 2020-6-18
|
a0a.1 32b0c
昨天晚上收到ST社区的NUCLEO-F413ZH开发板(STM32官网),首先感谢ST公司和ST社区论坛给的这次评测机会,开箱之后参照 “风子”移植“CoreMark”的步骤移植了一下(需要的朋友请移步 【F769IDISCOVERY评测】Coremark移植教程与跑分测试),前面的步骤基本都是参照他的帖子做的,先上图
我只跑出了 170分左右,比官方的少了不少,不知道哪里处理的不对。。。
移植过程,使用滴答定时器作为计时时钟,使用usart3作为串口输出,使用Cube生成的模板,然后修改Main.c中的main函数为:
- void hardware_init(void)
- //int main(void)
- {
- /* USER CODE BEGIN 1 */
- // uint8_t buf[]="I'm Nucleo F413ZH ! \r\n";
- // static uint32_t times=0;
- /* USER CODE END 1 */
- /* MCU Configuration----------------------------------------------------------*/
- /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
- HAL_Init();
- /* Configure the system clock */
- SystemClock_Config();
- /* Initialize all configured peripherals */
- MX_GPIO_Init();
- MX_SPI3_Init();
- MX_USART3_UART_Init();
- MX_TIM14_Init();
- /* USER CODE BEGIN 2 */
- //HAL_TIM_Base_Start_IT(&htim14);
- /* USER CODE END 2 */
- /* Infinite loop */
- /* USER CODE BEGIN WHILE */
- // while (1)
- // {
- // /* USER CODE END WHILE */
- // /* USER CODE BEGIN 3 */
- //// printf("I'm ths %d times \r\n",times++);
- //// HAL_Delay(1500);
- // }
- /* USER CODE END 3 */
- printf("Core Mark start ... \r\n");
- printf("Please wait ... \r\n");
- }
复制代码 然后修改“core_portme.c”中的宏定义如下
- /* Define : TIMER_RES_DIVIDER
- Divider to trade off timer resolution and total time that can be measured.
- Use lower values to increase resolution, but make sure that overflow does not occur.
- If there are issues with the return value overflowing, increase this value.
- */
- #define NSECS_PER_SEC CLOCKS_PER_SEC
- #define CORETIMETYPE clock_t
- //#define GETMYTIME(_t) (*_t=clock())
- #define GETMYTIME(_t) (*(_t)=(clock_t)HAL_GetTick())
- #define MYTIMEDIFF(fin,ini) ((fin)-(ini))
- #define TIMER_RES_DIVIDER 1
- #define SAMPLE_TIME_IMPLEMENTATION 1
- //#define EE_TICKS_PER_SEC (NSECS_PER_SEC / TIMER_RES_DIVIDER)
- #define EE_TICKS_PER_SEC 1000
复制代码 然后删除了“plat_hardware.c”里的函数,只保留了这个函数,用于获取Tick
- clock_t clock(void)
- {
- return (clock_t)HAL_GetTick();
- }
复制代码 移植基本完成,附上完整工程(包含Cube的工程)。。。
相关文档:
|
-
-
STM32F413_CoreMark.rar
下载
8.34 MB, 下载次数: 24, 下载积分: ST金币 -1
评分
-
查看全部评分
|