1 2 3 4 5 ··· 19 下一页
摘要: #include <stdio.h> #define SUPPORT_LED_WHITE #define CURRENT_COMPILE_PRODUCT_IM2111H int main(void) { #if defined (SUPPORT_LED_WHITE) || defined(CURRE 阅读全文
posted @ 2025-10-18 10:40 panda_w 阅读(3) 评论(0) 推荐(0)
摘要: # Nordic nRF52840 SPI DMA驱动ST7789v2移植LVGL 下面是为nRF52840平台实现的SPI DMA驱动ST7789v2显示屏并移植LVGL的完整方案。该方案使用nRF5 SDK和Zephyr RTOS两种方式实现。 ## 方案一:基于nRF5 SDK的实现 ```c 阅读全文
posted @ 2025-07-21 13:31 panda_w 阅读(59) 评论(0) 推荐(0)
摘要: /** * @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 阅读(12) 评论(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 阅读(50) 评论(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 阅读(44) 评论(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 阅读(31) 评论(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 阅读(8) 评论(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 阅读(33) 评论(0) 推荐(0)
摘要: https:aaaa 阅读全文
posted @ 2025-02-17 23:05 panda_w 阅读(9) 评论(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 阅读(56) 评论(0) 推荐(0)
1 2 3 4 5 ··· 19 下一页