摘要: /** * @details: This function is Uart2 Init for RS485 */ void Uart2_Init(void) { /* Unlock protected registers */ SYS_UnlockReg(); /* Enable UART modu 阅读全文
posted @ 2025-07-01 13:46 panda_w 阅读(3) 评论(0) 推荐(0)
摘要: C++ :面向对象面向对象特征:封装——继承——多态——异常 特性:1.c++完全兼容C2.c++标准:c++11标准 c++14标准3.c++应用:游戏引擎 服务器开发 UI-QT4.c++ main: int5.c++头文件不用.h : include <cmath> == include <m 阅读全文
posted @ 2025-06-13 21:49 panda_w 阅读(11) 评论(0) 推荐(0)
摘要: /* * @Description : SPI(串行同步全双工) * @Author : wangxy * @Date : 2020-12-04 13:30:00 * @LastEditTime: Today * @LastEditors : wangxy * @FilePath : SPI.c * 阅读全文
posted @ 2025-03-15 10:34 panda_w 阅读(38) 评论(0) 推荐(0)
摘要: /** * @Author: wangxy * @Date: 2024-03-16 * @LastEditTime: 2024-03-19 * @LastEditors: wangxy * @Description: proj_eeprom * @FilePath: proj_eeprom.c */ 阅读全文
posted @ 2025-03-13 13:52 panda_w 阅读(29) 评论(0) 推荐(0)
摘要: /** * @Author: wangxy * @Date: 2024-03-16 * @LastEditTime: 2024-03-19 * @LastEditors: wangxy * @Description: proj_eeprom * @FilePath: proj_eeprom.c */ 阅读全文
posted @ 2025-03-11 18:04 panda_w 阅读(6) 评论(0) 推荐(0)
摘要: #ifndef __PROJ_CANBMS_H__ #define __PROJ_CANBMS_H__ #include <stdint.h> #include "double_list.h" #define BMS_CAN CANFD0 //CANFD1 #define BMS_DEVICE_MA 阅读全文
posted @ 2025-03-01 13:46 panda_w 阅读(15) 评论(0) 推荐(0)
摘要: https:aaaa 阅读全文
posted @ 2025-02-17 23:05 panda_w 阅读(5) 评论(0) 推荐(0)
摘要: cmake 1.安装编译: 1. sudo apt-get update sudo apt install cmake 注意:此种方式安装的可能不是最新版本的CMake 2. CMake源码下载地址:https://cmake.org/download/ tar -zxvf cmake-3.29.0 阅读全文
posted @ 2024-12-12 14:21 panda_w 阅读(35) 评论(0) 推荐(0)
摘要: Linux --总概括 1.uboot是最大的裸机程序 2.uboot是个片外程序 3.内核态 + 用户态 4.软中断:通过软件产生的中断 5. bootloader :uboot.bin / uboot.imx kernel :zimage rootfs :system.ing / rootfs. 阅读全文
posted @ 2024-11-26 23:53 panda_w 阅读(16) 评论(0) 推荐(0)
摘要: uboot + linux_kernel + root_file_systerm 1.file_systerm: 管理文件 2.类型:fat32 ext2 ext3 ntfs 3.根文件系统: 1. /bin :常用命令和二进制文件(cat ls chmod cp sh kill mount mkd 阅读全文
posted @ 2024-11-22 23:42 panda_w 阅读(19) 评论(0) 推荐(0)