如何在 Linux eclips 中编译 mbed main.c++ 和 main.h 文件以获取构建文件(.elf.hex)

How to compile mbed main.c++ and main.h file in Linux eclips to get build files(.elf.hex)

如果有人解释如何使用Ubuntu 平台在eclips 中使用.c++ 和.h 文件编译它并得到.elf、.hex 和.bin 文件,我将非常感激。 我有一些来自 mbed STM32f4 开发板的文件。 请指导我 谢谢

两个选项:

  1. 通过 mbed CLI 构建。安装后将 Eclipse 中的构建命令设置为:

    mbed compile -m YOUR_BOARD -t GCC_ARM --profile ./mbed-os/tools/profiles/debug.json

  2. 通过 Makefile 构建。在 mbed Online Compiler 中右键单击您的项目,select Export > Eclipse (GCC ARM)。这将为您提供一个带有 makefile 的 Eclipse 项目。