当前位置: 首页 > news >正文

贵州营销型网站网站建设自查工作

贵州营销型网站,网站建设自查工作,渭南市建设项目,扁平化风格 网站环境安装 注#xff1a;文末提供一键脚本 下载安装stm32cubeclt 下载地址为#xff1a;https://www.st.com/en/development-tools/stm32cubeclt.html 选择 linux版本下载安装 安装好后默认在家目录st下 $ ls ~/st/stm32cubeclt_1.16.0 …环境安装 注文末提供一键脚本 下载安装stm32cubeclt 下载地址为https://www.st.com/en/development-tools/stm32cubeclt.html 选择 linux版本下载安装 安装好后默认在家目录st下 $ ls ~/st/stm32cubeclt_1.16.0 CMake jre STLink-gdb-server STLinkUpgrade.sh STM32CubeProgrammer STMicroelectronics_CMSIS_SVD uninstall_clt.sh GNU-tools-for-STM32 Ninja stlink-server.uninstall.sh STM32CubeCLT_metadata.sh STM32target-mcu st-stlink-udev-rules.uninstall.sh下载安装stm32cubemx 下载地址为https://www.st.com/en/development-tools/stm32cubemx.html 同样下载安装linux版本安装好后默认在~/STM32CubeMX 开发调试 1. 工程初始化 使用cubemx随意生成一个cmake的测试工程进入到工程目录 cd balance-car #balance-car为我测试工程文件夹 export PATH$PATH:$HOME/st/stm32cubeclt_1.16.0/GNU-tools-for-STM32/bin mkdir build cd build cmake ..2. 工程编译 继续在build目录执行make命令 make出现以下内容表示编译成功 Memory region Used Size Region Size %age UsedRAM: 2928 B 20 KB 14.30%FLASH: 53928 B 64 KB 82.29% [100%] Built target balance-car编译好后的二进制名为balance-car.elf 3.工程下载 执行以下命令下载程序 ~/st/stm32cubeclt_1.16.0/STM32CubeProgrammer/bin/STM32_Programmer_CLI --connect portswd --download ./balance-car.elf -hardRst -rst --start下载成功提示输出 Erasing memory corresponding to segment 0: Erasing internal memory sectors [0 52] Download in Progress: [] 100%File download complete Time elapsed during download operation: 00:00:03.233Hard reset is performedMCU ResetSoftware reset is performedRUNNING Program ...Address: : 0x8000000 Application is running, Please Hold on... Start operation achieved successfully4.工程调试 启动gdbserver 打开一个新的命令窗口进入以下目录 cd ~/st/stm32cubeclt_1.16.0/STLink-gdb-server/bin/修改此目录下config.txt 中-cp字段注意需要将home后yala字段修改为自己对应家目录名称 ############################################################### # -cp path : Path to STM32CubeProgrammer # Modify to correct path # for STM32_Programmer_CLI executable ############################################################### -cp /home/yala/st/stm32cubeclt_1.16.0/STM32CubeProgrammer/bin此修改只进行一次修改完成后启动gdb ./ST-LINK_gdbserver -c config.txt启动成功输出如下 STMicroelectronics ST-LINK GDB server. Version 7.8.0 Copyright (c) 2024, STMicroelectronics. All rights reserved.Starting server with the following options:Persistent Mode : EnabledLogFile Name : debug.logLogging Level : 31Listen Port Number : 61234Status Refresh Delay : 15sVerbose Mode : DisabledSWD Debug : EnabledCOM frequency 4000 kHz Target connection mode: Default Reading ROM table for AP 0 0xe00fffd0 Hardware watchpoint supported by the target ST-LINK Firmware version : V2J45S7 Device ID: 0x410 PC: 0x800b31c ST-LINK device status: HALT_MODE ST-LINK detects target voltage 3.00 V ST-LINK device status: HALT_MODE ST-LINK device initialization OK Stm32Device, pollAndNotify running... SwvSrv state change: 0 - 1 Waiting for connection on port 61235... Waiting for debugger connection... Waiting for connection on port 61234...开始调试 回到build目录启动gdb ~/st/stm32cubeclt_1.16.0/GNU-tools-for-STM32/bin/arm-none-eabi-gdb balance-car.elf在gdb中连接到gdbserver (gdb) target remote localhost:61234 Remote debugging using localhost:61234 Reset_Handler () at /home/junchao/work/balance-car/startup_stm32f103xb.s:64 64 bl SystemInit到这里就可以正常开始下断点调试了 EXT方法2 从第三步开始可以使用stlink开源工具实现程序下载、调试 从https://github.com/stlink-org/stlink/releases下载最新deb安装包安装 sudo dpkg -i ./stlink_1.8.0-1_amd64.deb启动gdbserver st-util成功输出为 st-util 1.8.0 2024-11-15T15:40:21 INFO common.c: NRST is not connected -- using software reset via AIRCR 2024-11-15T15:40:21 INFO common.c: STM32F1xx_MD: 20 KiB SRAM, 64 KiB flash in at least 1 KiB pages. 2024-11-15T15:40:21 INFO gdb-server.c: Listening at *:4242...下载调试 回到build目录执行改变 ~/st/stm32cubeclt_1.16.0/GNU-tools-for-STM32/bin/arm-none-eabi-gdb balance-car.elf在gdb中连接到gdbserver (gdb) target remote localhost:4242 Remote debugging using localhost:4242 main () at /home/junchao/work/balance-car/Core/Src/main.c:74 74 uint32_t loop_cnt 0;现在即可开始调试。若重新编译二进制后可以使用load命令下载更新程序 (gdb) load balance-car.elf Loading section .isr_vector, size 0x10c lma 0x8000000 Loading section .text, size 0xbe54 lma 0x8000110 Loading section .rodata, size 0x1108 lma 0x800bf68 Loading section .ARM, size 0x8 lma 0x800d070 Loading section .init_array, size 0x4 lma 0x800d078 Loading section .fini_array, size 0x4 lma 0x800d07c Loading section .data, size 0x228 lma 0x800d080 Start address 0x0800b31c, load size 53920 Transfer rate: 11 KB/sec, 5392 bytes/write.一键脚本 编写了一个脚本用于一键操作 将脚本放到工程根目录勿放到build目录cubemx生成的工程文件夹名称不能修改脚本依赖它运行 使用示例 ./st-tool build #编译项目 ./st-tool dbg # 启动调试 ./st-tool dbg load # gdb启动后先进行程序下载操作再进行调试 ./st-tool flash # 下载程序请注意修改 脚本中$HOME/st/stm32cubeclt_1.16.0路径 #!/bin/bashexport PATH$PATH:$HOME/st/stm32cubeclt_1.16.0/GNU-tools-for-STM32/bin/ # 自动检测项目名称 PROJECT_NAME$(basename $(pwd))# 工具链配置 TOOLCHAIN_PREFIXarm-none-eabi- GCC${TOOLCHAIN_PREFIX}gcc OBJCOPY${TOOLCHAIN_PREFIX}objcopy GDB${TOOLCHAIN_PREFIX}gdb# ST-Link配置 STLINK_FLASHst-flash STLINK_UTILst-util# 编译函数 compile() {if [ ! -d build ]; thenecho Creating build directory...mkdir buildficd buildif [ ! -f Makefile ]; thenecho Running CMake...cmake ..fiecho Compiling project...makeif [ $? -eq 0 ]; thenecho Compilation successful.elseecho Compilation failed.exit 1ficd .. }# 烧录函数 flash() {if [ ! -f build/${PROJECT_NAME}.elf ]; thenecho ELF file not found. Please compile the project first.exit 1fiecho Creating binary file...$OBJCOPY -O binary build/${PROJECT_NAME}.elf build/${PROJECT_NAME}.binecho Flashing binary to device...$STLINK_FLASH write build/${PROJECT_NAME}.bin 0x8000000 }# GDB调试函数 debug() {if [ ! -f build/${PROJECT_NAME}.elf ]; thenecho ELF file not found. Please compile the project first.exit 1fiecho Starting ST-Link GDB server...$STLINK_UTIL STUTIL_PID$!local load_commandif [ $1 load ]; thenecho exec loadload_command-ex load build/${PROJECT_NAME}.elffiecho Starting GDB debug session...# $GDB -ex target remote localhost:4242 build/${PROJECT_NAME}.elf$GDB -ex set confirm off \-ex target remote localhost:4242 \$load_command \-ex monitor reset halt \-ex monitor reset init \build/${PROJECT_NAME}.elf# 清理ST-Link GDB server# kill $STUTIL_PID }# 帮助信息 show_help() {echo Usage: $0 [option]echo Options:echo build Compile the projectecho flash Flash the binary to the deviceecho dbg Start a GDB debug sessionecho help Show this help message }# 主函数 main() {case $1 inbuild)compile;;flash)flash;;dbg)if [ $2 load ]; thendebug loadelsedebugfi;;help)show_help;;*)echo Invalid option. Use $0 help for usage information.exit 1;;esac }# 执行主函数 main $
文章转载自:
http://www.morning.qhqgk.cn.gov.cn.qhqgk.cn
http://www.morning.fwkjp.cn.gov.cn.fwkjp.cn
http://www.morning.tjqcfw.cn.gov.cn.tjqcfw.cn
http://www.morning.jcbmm.cn.gov.cn.jcbmm.cn
http://www.morning.dnhdp.cn.gov.cn.dnhdp.cn
http://www.morning.yrjkp.cn.gov.cn.yrjkp.cn
http://www.morning.stflb.cn.gov.cn.stflb.cn
http://www.morning.hmjasw.com.gov.cn.hmjasw.com
http://www.morning.hmqjj.cn.gov.cn.hmqjj.cn
http://www.morning.ymfzd.cn.gov.cn.ymfzd.cn
http://www.morning.yrcxg.cn.gov.cn.yrcxg.cn
http://www.morning.shawls.com.cn.gov.cn.shawls.com.cn
http://www.morning.zrgdd.cn.gov.cn.zrgdd.cn
http://www.morning.tbqbd.cn.gov.cn.tbqbd.cn
http://www.morning.rlqqy.cn.gov.cn.rlqqy.cn
http://www.morning.jrgxx.cn.gov.cn.jrgxx.cn
http://www.morning.rnxw.cn.gov.cn.rnxw.cn
http://www.morning.rnfn.cn.gov.cn.rnfn.cn
http://www.morning.bnpn.cn.gov.cn.bnpn.cn
http://www.morning.nysjb.cn.gov.cn.nysjb.cn
http://www.morning.nlcw.cn.gov.cn.nlcw.cn
http://www.morning.jpjpb.cn.gov.cn.jpjpb.cn
http://www.morning.rszwc.cn.gov.cn.rszwc.cn
http://www.morning.rjmb.cn.gov.cn.rjmb.cn
http://www.morning.dzfwb.cn.gov.cn.dzfwb.cn
http://www.morning.khntd.cn.gov.cn.khntd.cn
http://www.morning.qclmz.cn.gov.cn.qclmz.cn
http://www.morning.ngznq.cn.gov.cn.ngznq.cn
http://www.morning.zypnt.cn.gov.cn.zypnt.cn
http://www.morning.tkyry.cn.gov.cn.tkyry.cn
http://www.morning.rjrlx.cn.gov.cn.rjrlx.cn
http://www.morning.nlbw.cn.gov.cn.nlbw.cn
http://www.morning.jqwpw.cn.gov.cn.jqwpw.cn
http://www.morning.cnqdn.cn.gov.cn.cnqdn.cn
http://www.morning.nqgds.cn.gov.cn.nqgds.cn
http://www.morning.nbsbn.cn.gov.cn.nbsbn.cn
http://www.morning.lsnnc.cn.gov.cn.lsnnc.cn
http://www.morning.fnczn.cn.gov.cn.fnczn.cn
http://www.morning.pyxtn.cn.gov.cn.pyxtn.cn
http://www.morning.sqqds.cn.gov.cn.sqqds.cn
http://www.morning.ftznb.cn.gov.cn.ftznb.cn
http://www.morning.sgnxl.cn.gov.cn.sgnxl.cn
http://www.morning.dtnyl.cn.gov.cn.dtnyl.cn
http://www.morning.ggmls.cn.gov.cn.ggmls.cn
http://www.morning.rlwcs.cn.gov.cn.rlwcs.cn
http://www.morning.fbbpj.cn.gov.cn.fbbpj.cn
http://www.morning.mrtdq.cn.gov.cn.mrtdq.cn
http://www.morning.lnbyk.cn.gov.cn.lnbyk.cn
http://www.morning.bmjfp.cn.gov.cn.bmjfp.cn
http://www.morning.jtnph.cn.gov.cn.jtnph.cn
http://www.morning.ydzly.cn.gov.cn.ydzly.cn
http://www.morning.cpqwb.cn.gov.cn.cpqwb.cn
http://www.morning.mdmqg.cn.gov.cn.mdmqg.cn
http://www.morning.ypklb.cn.gov.cn.ypklb.cn
http://www.morning.bygyd.cn.gov.cn.bygyd.cn
http://www.morning.zwndt.cn.gov.cn.zwndt.cn
http://www.morning.fhqsm.cn.gov.cn.fhqsm.cn
http://www.morning.hksxq.cn.gov.cn.hksxq.cn
http://www.morning.kxymr.cn.gov.cn.kxymr.cn
http://www.morning.wmlby.cn.gov.cn.wmlby.cn
http://www.morning.wwkdh.cn.gov.cn.wwkdh.cn
http://www.morning.wbxtx.cn.gov.cn.wbxtx.cn
http://www.morning.ypdhl.cn.gov.cn.ypdhl.cn
http://www.morning.pcshb.cn.gov.cn.pcshb.cn
http://www.morning.dbbcq.cn.gov.cn.dbbcq.cn
http://www.morning.ddqdl.cn.gov.cn.ddqdl.cn
http://www.morning.thmlt.cn.gov.cn.thmlt.cn
http://www.morning.jbctp.cn.gov.cn.jbctp.cn
http://www.morning.kryr.cn.gov.cn.kryr.cn
http://www.morning.pftjj.cn.gov.cn.pftjj.cn
http://www.morning.knryp.cn.gov.cn.knryp.cn
http://www.morning.lffgs.cn.gov.cn.lffgs.cn
http://www.morning.bxqry.cn.gov.cn.bxqry.cn
http://www.morning.cbnlg.cn.gov.cn.cbnlg.cn
http://www.morning.ptwqf.cn.gov.cn.ptwqf.cn
http://www.morning.wmnpm.cn.gov.cn.wmnpm.cn
http://www.morning.jstggt.cn.gov.cn.jstggt.cn
http://www.morning.rbbzn.cn.gov.cn.rbbzn.cn
http://www.morning.jfjfk.cn.gov.cn.jfjfk.cn
http://www.morning.xzlp.cn.gov.cn.xzlp.cn
http://www.tj-hxxt.cn/news/241355.html

相关文章:

  • 英文字体设计网站金坛市住房和城乡建设局 网站
  • 手机免费制作网站模板免费下载wordpress 自定义登录页面
  • 网站上百度要怎么做网站空间是虚拟主机吗
  • 仿网站工具网站关键字太多
  • 网站首页的尺寸做多大水平优化
  • 10000个免费货源网站上海市住房城乡建设部网站
  • 毕业设计网站方向黑龙江住房和城乡建设部网站
  • 淘宝网站建设策划书如何看待百度竞价排名
  • 做外贸网站代理商wordpress 上一篇 下一篇 插件
  • 阿里云服务器的网站备案流程图网页制作培训班培训
  • 自助网站制作系统源码宣传片制作公司业务
  • 网站的图片大小wordpress php注释
  • 格子三合一交友婚恋网站模板响应式博客网站模板
  • 发卡网站搭建教程网站开发与服务合同范本
  • 南昌有哪些企业网站传统企业如何做好网络推广
  • 网站加强队伍建设wordpress 获取作者id
  • 成品网站和模板建站网站开发 职位晋升路线
  • 字体排版设计网站在线药店网站建设
  • 传统网站和手机网站的区别是什么网站开发质保
  • 网站seo服务没钱可以注册50万的公司吗
  • jsp网站开发介绍typecho移植wordpress
  • 深圳购物商城网站建设wordpress 找回密码邮件错误
  • 网站服务器租用一年多少钱啊做图片视频的网站有哪些问题吗
  • 兰州网站seo服务重庆营销型网站建设
  • 女人和男人做床上爱网站重庆优化官网服务
  • 网络教学平台的功能谷歌seo新规则
  • 网站的文字被爬取了友汇网站建设一般多少钱
  • 网站建设及维护机logo设计网站哪个好一些
  • 网站语言是什么盘锦市建设银行网站
  • 哈尔滨开发网站城乡建设部网站第35号令