摘要: A卷: https://ayu-990121-1302263000.cos.ap-nanjing.myqcloud.com/%E9%91%AB%E9%91%AB/A%E5%8D%B7%E8%AF%84%E5%88%86%E6%A0%87%E5%87%86%E5%8F%8A%E5%8F%82%E8%8 阅读全文
posted @ 2024-07-18 20:22 快乐气氛组阿宇 阅读(6) 评论(0) 推荐(0) 编辑
摘要: C++常见算法总结 堆排序学习 bool operator()(const pair<int, int>& lhs, const pair<int, int>& rhs) { return lhs.second > rhs.second; //小顶堆 } priority_queue<pair<in 阅读全文
posted @ 2024-01-03 16:39 快乐气氛组阿宇 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 华为提纲 递归 70. 爬楼梯 class Solution { public: int climbStairs(int n) { vector<int> vec(n+1,0); vec[0] = 1; vec[1] = 1; for(int i = 2; i <= n; i++){ vec[i] 阅读全文
posted @ 2024-01-03 16:32 快乐气氛组阿宇 阅读(126) 评论(0) 推荐(0) 编辑
摘要: VCS和Verdi联合仿真小实验 基础准备 环境安装略过 新建一个文件夹,文件夹下一共需要四个文件,分别是头文件命名为 a.v、仿真文件命名为 a_tb.v、文件名的list文件命名为 dut.f、还有makefile文件 头文件 首先是头文件 a.v module a( clk , rst_n , 阅读全文
posted @ 2024-01-03 16:20 快乐气氛组阿宇 阅读(232) 评论(0) 推荐(0) 编辑
摘要: # QMA I2C驱动 ## 基本配置 esp-idf 是最新的分支 开发板型号为esp32c3 ## 代码链接 [doincli/QMA_I2C: esp32读写QAM7981加速度芯片驱动 (github.com)](https://github.com/doincli/QMA_I2C/tree 阅读全文
posted @ 2023-07-18 01:32 快乐气氛组阿宇 阅读(118) 评论(0) 推荐(0) 编辑
摘要: # OBD + GATTS + RADIO第三版 ## 整体思路: 一共使用3块ESP32 (以下都用简称了) 第一块ESP32 称为ESP_1 用于OBD检测 通过GATTS发送给第二块ESP32 通过射频发送给第三块ESP32 第二块ESP32 称为ESP_2 用于GATTS传输,可以认为是手机 阅读全文
posted @ 2023-07-07 10:51 快乐气氛组阿宇 阅读(32) 评论(0) 推荐(0) 编辑
摘要: # 丢包的处理方法 代码连接如下: [esp32_obd_blue/ at feature/packet_loss_pro · doincli/esp32_obd_blue · GitHub](https://github.com/doincli/esp32_obd_blue/tree/featur 阅读全文
posted @ 2023-07-04 20:13 快乐气氛组阿宇 阅读(90) 评论(0) 推荐(0) 编辑
摘要: # OBD检测+蓝牙GATTS传输 分为客户端和服务端两个部分,分别在两个文件夹下 代码连接: [esp32_obd_blue/ at feature/gatt_v1 · doincli/esp32_obd_blue · GitHub](https://github.com/doincli/esp3 阅读全文
posted @ 2023-07-03 22:54 快乐气氛组阿宇 阅读(260) 评论(0) 推荐(0) 编辑
摘要: # OBD + GATTS + RADIO 代码连接: [esp32_obd_blue/ at feature/obd_gatts_radio · doincli/esp32_obd_blue · GitHub](https://github.com/doincli/esp32_obd_blue/t 阅读全文
posted @ 2023-07-03 22:54 快乐气氛组阿宇 阅读(53) 评论(0) 推荐(0) 编辑
摘要: # OBD_detect组件说明 利用esp32获得OBD模拟器数据进行车况检测的组件,可以直接获得车速信息 组件代码如下: https://github.com/doincli/esp32_obd_blue ## 公共参数说明: ### 定义的参数 protocol_t表示协议到种类,有两种 IS 阅读全文
posted @ 2023-06-28 10:37 快乐气氛组阿宇 阅读(185) 评论(0) 推荐(0) 编辑