上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页
摘要: TPS63020——5V转3.3V电路设计 阅读全文
posted @ 2026-04-05 17:15 Q&25 阅读(56) 评论(0) 推荐(0)
摘要: STM32入门——硬件SPI读写W25Q64(18) #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h" #include "W25Q64.h" uint8_t MID; //定义用于存放MID号的 阅读全文
posted @ 2026-04-04 22:38 Q&25 阅读(31) 评论(0) 推荐(0)
摘要: STM32入门——软件SPI读写W25Q64(17) #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h" #include "W25Q64.h" uint8_t MID; //定义用于存放MID号的 阅读全文
posted @ 2026-04-04 22:06 Q&25 阅读(15) 评论(0) 推荐(0)
摘要: 图层管理器 嘉立创EDA专业版为用户提供了图层管理器,用户可以在图层管理器中快捷地配置PCB图层相关的内容,例如PCB的层数,图层的颜色、类型、透明度等等 操作步骤: 顶部菜单 - 工具 - 图层管理器 右侧的图层属性栏点击右上方的图层管理器的图标 弹出图层管理器的窗口,这里可以设置图层的透明度、名 阅读全文
posted @ 2026-04-04 20:06 Q&25 阅读(203) 评论(0) 推荐(0)
摘要: STM32入门——硬件I2C读写MPU6050(16) #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h" #include "MPU6050.h" uint8_t ID; // 定义用于存放ID号 阅读全文
posted @ 2026-04-03 21:46 Q&25 阅读(21) 评论(0) 推荐(0)
摘要: STM32入门——软件I2C读写MPU6050(15) #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h" #include "MPU6050.h" uint8_t ID; // 定义用于存放ID号 阅读全文
posted @ 2026-04-03 21:00 Q&25 阅读(49) 评论(1) 推荐(0)
摘要: 使用VScode配置STM32环境报错问题解决办法 现象:部分.h文件出现uint8_t 未定义报错(红色波浪线,编译正常) #ifndef __MYI2C_H #define __MYI2C_H // #include <stdint.h> // 第一种方法:避免 uint8_t 未定义报错 // 阅读全文
posted @ 2026-04-03 17:23 Q&25 阅读(40) 评论(0) 推荐(0)
摘要: 十大经典排序算法——冒泡排序(1) 冒泡排序(Bubble Sort)是一种简单的排序算法,它通过重复地遍历待排序的列表,比较相邻的元素并交换它们的位置来实现排序。该算法的名称来源于较小的元素会像"气泡"一样逐渐"浮"到列表的顶端。 1. 算法步骤 比较相邻元素:从列表的第一个元素开始,比较相邻的两 阅读全文
posted @ 2026-03-29 23:39 Q&25 阅读(15) 评论(0) 推荐(0)
摘要: STM32入门——串口收发文本数据包(14) #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h" #include "Serial.h" #include "LED.h" #include "str 阅读全文
posted @ 2026-03-29 15:59 Q&25 阅读(13) 评论(0) 推荐(0)
摘要: STM32入门—— 串口收发HEX数据包(13) #include "stm32f10x.h" // Device header #include "Delay.h" #include "OLED.h" #include "Serial.h" #include "Key.h" uint8_t Key 阅读全文
posted @ 2026-03-29 14:55 Q&25 阅读(26) 评论(1) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页