文章分类 -  STM32

摘要:set FLASH_SIZE 0x20000 #source [find interface/jlink.cfg] adapter driver cmsis-dap source [find interface/cmsis-dap.cfg] transport select swd source [ 阅读全文
posted @ 2025-05-19 11:25 微笑的''80 阅读(14) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/flyleaf91/category_6385850.html 阅读全文
posted @ 2025-05-19 11:01 微笑的''80 阅读(1) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_34901073/article/details/82887681 MDK5版本更新说明mdk539 下载地址:http://www.keil.com/files/eval/MDK539.EXE mdk538下载地址:http://www.keil. 阅读全文
posted @ 2025-05-14 00:27 微笑的''80 阅读(306) 评论(0) 推荐(0)
摘要:一般只能通过三种方式下载程序到stm32单片机中:1.JTAG 2.ISP 3.IAP具体可参考:单片机程序下载方式ISP、IAP、JTAG 接下来介绍如何ISP烧录代码: 要通过ISP方式下载程序,需要用到单片机内部自带的Bootloader,这个Bootloader是预制在单片机内部的,出厂自带 阅读全文
posted @ 2025-05-13 00:24 微笑的''80 阅读(72) 评论(0) 推荐(0)
摘要:1. 安装pyocd 2. pyocd pack install stm32f103c8 //安装芯片包 pyocd pack -f stm32f103c8 //验证是否装 C:\Users\Administrator\Desktop\testapp1\MDK-ARM\testapp1>pyocd 阅读全文
posted @ 2025-05-05 17:16 微笑的''80 阅读(33) 评论(0) 推荐(0)
摘要:#include "main.h" #include "gpio.h" #include <stdio.h> #include <stdlib.h> #include <string.h> void SystemClock_Config(void); GPIO_InitTypeDef gpio_c; 阅读全文
posted @ 2025-04-22 20:21 微笑的''80 阅读(4) 评论(0) 推荐(0)
摘要:# toolchain CC = arm-none-eabi-gcc CP = arm-none-eabi-objcopy AS = arm-none-eabi-gcc -x assembler-with-cpp # all the files will be generated with this 阅读全文
posted @ 2025-04-05 10:49 微笑的''80 阅读(7) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_45607873/article/details/126318922 https://www.eeworld.com.cn/mcu/hisic485836.html 阅读全文
posted @ 2025-03-18 17:08 微笑的''80 阅读(5) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/black_sneak/article/details/125583293 https://article.juejin.cn/post/7136395095107960862 stm32最小板 https://stm32-base.org/boards/ 阅读全文
posted @ 2025-01-24 10:05 微笑的''80 阅读(6) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2024-10-11 21:20 微笑的''80 阅读(236) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weixin_34130389/article/details/93806424 https://blog.csdn.net/weixin_51036987/article/details/125916714 中断函数: void SysTick_Hand 阅读全文
posted @ 2024-10-06 22:17 微笑的''80 阅读(8) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_36347513/article/details/122624920?spm=1001.2014.3001.5501 https://blog.csdn.net/abcabc123123123123/article/details/124125675 阅读全文
posted @ 2024-10-06 16:22 微笑的''80 阅读(8) 评论(0) 推荐(0)
摘要:内部FLASH采用的是NOR FLASH,它的特点是芯片内执行,这样应用程序就可以直接在FLASH闪存内运行,不必再把代码读到系统的RAM中。日志文件系统的主要功能是以内部FLASH地址作为存储空间(直接使用内部FLASH空间,减少硬件成本),在Cortex-M3系统CPU芯片上,按页建立的一个日志 阅读全文
posted @ 2024-10-06 15:57 微笑的''80 阅读(188) 评论(0) 推荐(0)
摘要:https://www.digikey.cn/zh/forum/t/topic/2855 #ifdef __GNUC__ #define PUTCHAR_PROTOTYPE int __io_putchar(int ch) #else #define PUTCHAR_PROTOTYPE int fp 阅读全文
posted @ 2024-10-06 15:07 微笑的''80 阅读(9) 评论(0) 推荐(0)
摘要:注意看SRAM大小 跟stm32比较 https://static.stmcu.com.cn/upload/Selection_Guide.pdf https://www.nxp.com.cn/products/processors-and-microcontrollers/arm-microcon 阅读全文
posted @ 2024-10-05 10:16 微笑的''80 阅读(20) 评论(0) 推荐(0)
摘要:-f "D:\Program Files\OpenOCD-20240916-0.12.0\share\openocd\scripts\interface\stlink-v2.cfg" -f "D:\Program Files\OpenOCD-20240916-0.12.0\share\openocd 阅读全文
posted @ 2024-10-04 09:14 微笑的''80 阅读(19) 评论(0) 推荐(0)
摘要:https://www.armbbs.cn/forum.php?mod=forumdisplay&fid=49 阅读全文
posted @ 2024-10-03 18:50 微笑的''80 阅读(9) 评论(0) 推荐(0)
摘要:https://docs.rtems.org/branches/master/user/bsps/arm/stm32f4.html https://blog.csdn.net/weixin_28454475/article/details/116732502?fromshare=blogdetail 阅读全文
posted @ 2024-10-03 11:35 微笑的''80 阅读(8) 评论(0) 推荐(0)
摘要:https://www.eeworld.com.cn/mcu/hisic472752.html https://blog.csdn.net/limc00/article/details/138556256 https://www.st.com/resource/en/application_note 阅读全文
posted @ 2024-10-03 08:58 微笑的''80 阅读(25) 评论(0) 推荐(0)
摘要:http://www.openedv.com/docs/boards/stm32/zdyz_stm32f103_warship.html https://www.yuanzige.com/course/detail/50101 阅读全文
posted @ 2024-09-22 15:19 微笑的''80 阅读(19) 评论(0) 推荐(0)