欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

rt thread 使用FAL遇到fal_init() undefined reference

程序员文章站 2022-07-11 18:56:25
...

rt thread FAL 0.5版,之前有没有不知道,遇到一个坑。

在main.cpp里面已经

#include <fal.h>

fal_init()

编译报错,说 fal_init() undefined reference 。

这个鸟问题卡了我2个小时,最后来了点灵感。

在fal.h里面,前面需要加一个extern C,后面也要加,我就不贴代码了。

#ifndef _FAL_H_
#define _FAL_H_

#include <rtconfig.h>
#include <fal_cfg.h>
#include "fal_def.h"
#ifdef __cplusplus
extern "C" {
#endif

 

因为我的其他代码都是C++写的,但是fal库是C写的,造成了这个问题。

另外我的板子是stm32F407, fal_cfg.h配置如下,供参考。我是准备用OTA的,但是现在还没开始搞,后面如果有更改再说。

/*
 * Copyright (c) 2006-2021, RT-Thread Development Team
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2021-06-02     alanl       the first version
 */
#ifndef _FAL_CFG_H_
#define _FAL_CFG_H_


//#include <rtconfig.h>
//#include <board.h>

#define FLASH_SIZE_GRANULARITY_16K   (4 * 16 * 1024)
#define FLASH_SIZE_GRANULARITY_64K   (1 * 64 * 1024)
#define FLASH_SIZE_GRANULARITY_128K  (7 * 128 * 1024)
#define STM32_FLASH_START_ADRESS_16K  STM32_FLASH_START_ADRESS
#define STM32_FLASH_START_ADRESS_64K  (STM32_FLASH_START_ADRESS_16K + FLASH_SIZE_GRANULARITY_16K)
#define STM32_FLASH_START_ADRESS_128K (STM32_FLASH_START_ADRESS_64K + FLASH_SIZE_GRANULARITY_64K)
/* ===================== Flash device Configuration ========================= */
extern const struct fal_flash_dev stm32_onchip_flash_16k;
extern const struct fal_flash_dev stm32_onchip_flash_64k;
extern const struct fal_flash_dev stm32_onchip_flash_128k;

/* flash device table */
#define FAL_FLASH_DEV_TABLE                                          \
{                                                                    \
    &stm32_onchip_flash_16k,                                           \
    &stm32_onchip_flash_64k,                                           \
    &stm32_onchip_flash_128k,                                           \
}
/* ====================== Partition Configuration ========================== */
#ifdef FAL_PART_HAS_TABLE_CFG
/* partition table */
#define FAL_PART_TABLE                                                               \
{                                                                                    \
    {FAL_PART_MAGIC_WORD,        "bl",     "stm32_onchip_flash_16k",         0,   64*1024, 0}, \
    {FAL_PART_MAGIC_WORD,       "app",     "stm32_onchip_flash_64k",   64*1024,  704*1024, 0}, \
    {FAL_PART_MAGIC_WORD,  "download", "stm32_onchip_flash_128k", 1024*1024, 1024*1024, 0}, \
}
#endif /* FAL_PART_HAS_TABLE_CFG */

#endif

 

相关标签: stm32 嵌入式