|
情况如下: 通过TouchGFX设计好一些界面后,可以直接通过F6(Run Target)去烧录程序到板子里面 然后在C:\TouchGFXProjects\MyApplication_3\TouchGFX\build\bin\路径下面可以找到intflash.hex和target.hex 我尝试通过STM32CubeProgrammer去把这两个hex文件download进去,但是都会报错 17:28:58 : Error: failed to download Segment[1] 17:28:58 : Error: failed to download the File 回到TouchGFX Designer里面的控制台 ST-LINK SN : 003F003B3137511333333639 ST-LINK FW : V3J7M2 Board : STM32H750B-DK Voltage : 3.27V SWD freq : 24000 KHz Connect mode: Normal Reset mode : Software reset Device ID : 0x450 Revision ID : Rev V Device name : STM32H7xx Flash size : 128 KBytes Device type : MCU Device CPU : Cortex-M7 BL Version : 0x90 Memory Programming ... Opening and parsing file: target.hex File : target.hex Size : 290.36 KB Address : 0x08000000 Erasing memory corresponding to segment 0: Erasing memory corresponding to segment 1: Erasing external memory sectors [0 1] Erasing memory corresponding to segment 2: Erasing external memory sectors [16 17] Download in Progress: 北北北北北北北北北北北北北北北北北北北北北北北北北 0% 圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹圹 100% File download complete Time elapsed during download operation: 00:00:05.772 Hard reset is performed Done 发现它除了擦出 sgment 0 1 2 之外,还会擦出外部的特定的memory sector 所以到底intflash.hex 和 target.hex 到底是要烧录到哪里??? 再仔细看了一下TouchGFX Designer里面的控制台 Compile make -f ../gcc/Makefile -j8 Middlewares/ST/touchgfx Reading TouchGFX/application.config Video Objects: Linking TouchGFX/build/bin/target.elf Producing additional output formats... target.hex - Combined internal+external hex intflash.elf - Internal flash, elf debug intflash.hex - Internal flash, hex Done 最后写着target.hex是包含了 internal + external 的hex文件,也就是说包含了intflash.hex??? 如果我不想通过TouchGFX Designer去下载程序到板子里面,想通过STM32CubeProgrammer去下载的话,需要怎样操作呢? 请各位大神指教一下小弟,谢谢。 |
STM32H725内部FLASH读写问题
我在使用STM32H747IGT6的时候,遇到了一个问题;上电前并未短路,上电后电流跳跃至1.6A,且不断增大至1.9A,断开电源后芯片不短路,请问是什么原因?
为什么在CubeMX中无法分析模型?而在云服务器可以?
STM32H7的LSE起振问题
stm32H7 FLASH写入后数据异常 求教
关于STM32H7的系统架构中总线主设备与总线从设备连接的疑问
STM32H7掉电存储数据
STM32H743ZIT6的4K SRAM备份域数据,当VTAB引脚的电压低于2.8V就会丢失数据,2.8V以上是正常,请问是什么问题?
STM32H747I_eval_QSPI FLM工程疑问
STM32H7 TIM3-CH3/4 能不能用于编码器输入。
微信公众号
手机版
点左侧有 EL 的图标,按需选择就行
现存算法文件,你针对性地选择后进行烧录。
另外,这个板子按理也有现存的例程,你可以先基于现有例程跑跑,找找流程,然后再自己来会更高效些。
make了,发现说有头文件没找到,又说有变量undefine
但是为什么TouchGFX它自己又能够编译并且通过呢。。。。
$ make -j6
Reading ./application.config
Compiling gui/src/screen1_screen/Screen1View.cppCompiling gui/src/model/Model.cpp
Compiling generated/gui_generated/src/screen1_screen/Screen1ViewBase.cppCompiling gui/src/common/FrontendApplication.cpp
Compiling generated/simulator/src/video/SoftwareMJPEGDecoder.cpp
gui/src/model/Model.cpp:3:10: fatal error: main.h: No such file or directory
#include "main.h"
^~~~~~~~Compiling generated/simulator/src/mainBase.cpp
compilation terminated.
generated/simulator/gcc/Makefile:196: recipe for target 'build/MINGW32_NT-6.2/gui/src/model/Model.o' failed
make[2]: *** [build/MINGW32_NT-6.2/gui/src/model/Model.o] Error 1
make[2]: *** Waiting for unfinished jobs....
gui/src/screen1_screen/Screen1View.cpp: In member function 'virtual void Screen1View::ChangeText()':
gui/src/screen1_screen/Screen1View.cpp:22:19: error: operation on '((Screen1View*)this)->Screen1View::resourceIndex' may be undefined [-Werror=sequence-point]
resourceIndex = (++resourceIndex % 4);
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
cc1plus.exe: all warnings being treated as errors
generated/simulator/gcc/Makefile:196: recipe for target 'build/MINGW32_NT-6.2/gui/src/screen1_screen/Screen1View.o' failed
make[2]: *** [build/MINGW32_NT-6.2/gui/src/screen1_screen/Screen1View.o] Error 1
generated/simulator/gcc/Makefile:155: recipe for target 'generate_assets' failed
make[1]: *** [generate_assets] Error 2
Makefile:32: recipe for target 'all' failed
谢谢大佬的回复
按照您的方法确实可以了
我发现如果用intflash.hex烧录进去的话图片是不包含的所以会有空缺,需要烧录target.hex
所以这就是说明target.hex是包含了internal和external的信息了。