乐鑫Esp32学习之旅② 巧用eclipes编辑器,官方教程在W

2018-05-15  本文已影响138人  半颗心脏


一 、前言;

欲要工其事,必要利其器;一个好的开始,必须要有一个好的编译器和环境,上篇我们已经提到了在Linux系统搭建编译环境,还需要开发的编译器,我坚信很多小伙伴都是windows系统 的,所以这篇带来的是:在windows下搭建ESP32的编译环境和利用Eclipes编译器编译我们的工程,一举两得!


安信可的一体化环境,发现集成后,难于适应最新版的IDF,为此博主辛苦敲打3个小时出此博文,未经同意不得转载,多谢合作!


二、工具下载材料;


三、工具安装;


①、我们把视野转移到子目录下的etc\profile.d文件夹下面,新建一个export_idf_path.sh的命令符文件,注意格式是.sh,见图一;
②、其内容如下代码,旨在指定编译时候的路径:<font color=red>第一个是指定了IDF框架,第二个是指定了PY等命令!</font>:

export IDF_PATH="E:/Esp32Study/ESP32IDE/msys32/home/Administrator/esp-idf"
export PATH="/mingw32/bin/:$PATH"

这里写图片描述
git clone --recursive https://github.com/espressif/esp-idf.git
这里写图片描述

四、初次编译;


  • 我这里就在esp-idf同目录下面新建子文件夹Project32,同时把hello_world复制到此文件夹下面!
这里写图片描述

CC build/xtensa-debug-module/eri.o
AR build/xtensa-debug-module/libxtensa-debug-module.a
LD build/hello-world.elf
esptool.py v2.3.1
To flash all build output, run 'make flash' or:
python /home/Administrator/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 --port com13 --baud 115200 --before default_reset --after h                                                    ard_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 /home/Administrator/ProjectEsp32/hello_world/build/bootloader/                                                    bootloader.bin 0x10000 /home/Administrator/ProjectEsp32/hello_world/build/hello-world.bin 0x8000 /home/Administrator/ProjectEsp32/hello_world/build/                                                    partitions_singleapp.bin


这里写图片描述


这里写图片描述
这里写图片描述

五、开始搭建Eclipes编译器环境;



①、确定下载的eclipes是否为c/c++类型,从下图看到的弹窗已经是默认把C/C++default

这里写图片描述

②、导入工程,拷贝我们的刚刚的hello_world目录,这个和esp8266的导入有点相似,但是最后选择是跨平台的Cross Gcc

这里写图片描述
这里写图片描述

③、导入工程后,需要为编译器配置下编译变量!;

增加一个是IDF_PATH的变量:

E:\Esp32Study\ESP32IDE\msys32\home\Administrator\esp-idf\

增加三个是PATH的变量,<font color=red>注意在原来的基础上加,分号用英文的!!

E:\Esp32Study\ESP32IDE\msys32\usr\bin\;
E:\Esp32Study\ESP32IDE\msys32\opt\xtensa-esp32-elf\bin;
E:\Esp32Study\ESP32IDE\msys32\mingw32\bin\;

④、为编译器配置工程的编译指令!;

第一个配置鼠标右击工程,找到Make TargetCreat..., 之后我们新建我们的make all命令,如下:

这里写图片描述

第二个配置鼠标右击工程,找到Make TargetCreat..., 之后我们新建我们的make flash命令,如下:

这里写图片描述

关于为什么不配置make menuconfig命令? 此命令我发现配置了也不成功显示那个蓝色弹窗,可能是需要cywin的配置,也有可能是其他问题?所以,我这还是用shell命令符来配置make menuconfig,比较笨重! 希望已经解决此问题的人,留言下,万分感激!!


六、编译代码;


这里写图片描述
这里写图片描述

七、修改代码,打印hello world


这里写图片描述

首先我们先配置下整个工程的头文件路径,因为SDK和编译器代码是分开的,所以手动指定路径头文件!

${IDF_PATH}/components/esp32/include
${IDF_PATH}/components/newlib/include
${IDF_PATH}/components/freertos/include
${IDF_PATH}/components/nvs_flash/include
${IDF_PATH}/components/driver/include
${IDF_PATH}/components/log/include
${IDF_PATH}/components/spi_flash/include

我们把app_main()修改如下,让他不再重启模块!

void app_main() {

    printf("Hello world!\n");

    esp_chip_info_t chip_info;
    esp_chip_info(&chip_info);

    printf("--------------------------------------------\n\r ");
    printf("Hellow World , Esp32 !!\n\r ");
    printf("This is ESP32 chip with %d CPU cores, WiFi%s%s, ", chip_info.cores,
            (chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "",
            (chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : "");

    printf("silicon revision %d, ", chip_info.revision);

    printf("%dMB %s flash\n", spi_flash_get_chip_size() / (1024 * 1024),
            (chip_info.features & CHIP_FEATURE_EMB_FLASH) ?
                    "embedded" : "external");
    printf("--------------------------------------------\n\r ");
    fflush(stdout);
}

双击make flash编译并且下载到esp32,波特率115200,复位上电看串口打印!

这里写图片描述

本文为博主半颗心脏辛苦敲打了3个小时,未经同意不得转载,多谢合作!

上一篇下一篇

猜你喜欢

热点阅读