本文分类:news发布日期:2025/5/7 7:17:41
相关文章
电子电气架构 --- 面向服务的汽车诊断架构
我是穿拖鞋的汉子,魔都中坚持长期主义的汽车电子工程师。
老规矩,分享一段喜欢的文字,避免自己成为高知识低文化的工程师: 所有人的看法和评价都是暂时的,只有自己的经历是伴随一生的,几乎所有的担忧和畏惧,都是来源于自己的想象,只有你真的去做了,才会发现有多快乐。…
建站知识
2025/5/7 7:08:16
linux arm下获取屏幕事件(rk3588)
1、找到屏幕设备名称
cat /proc/bus/input/devices我的屏幕设备是ILITEK ILITEK-TP,它的设备名称是event1. 2、读取屏幕事件。 方法1:
cat /dev/input/event1 | hexdump方法2:
3、c代码实现
#include <stdio.h>
#include <unis…
建站知识
2025/5/7 6:45:26
【LLM】Langchain+RAG大模型学习笔记
目录 Langchain介绍
Langchain基本使用
1. 调用 LLM(LLM Call)
2. 提示模板(Prompt Templates)
3. 保存历史对话(Conversation History)
4. 集成现有工具(Tool Integration)
5…
建站知识
2025/4/22 17:19:35
Linux下的wlan0控制
WIFI常用的两种模式:STA / AP
1. STA模式:客户端
嵌入式的系统下常常要手动配置wifi,和IP地址才能开始上网,关于STA模式下,常用的wifi配置工具有wpa_supplicant和轻量级的udhcpc客户端。
1.1wpa_supplicant 最小配置…
建站知识
2025/5/7 6:55:13
如何查看ubuntu服务器的ssh服务是否可用
你可以通过以下几种方法检查 Ubuntu 服务器上的 SSH 服务是否可用:
1. 使用 systemctl 检查 SSH 服务状态
首先,检查 SSH 服务是否正在运行:
sudo systemctl status ssh如果 SSH 服务正在运行,你会看到类似以下的输出ÿ…
建站知识
2025/4/19 15:57:53
UICollectionView在xcode16编译闪退问题
使用xcode15运行工程,控制台会出现如下提示: Expected dequeued view to be returned to the collection view in preparation for display. When the collection views data source is asked to provide a view for a given index path, ensure that a …
建站知识
2025/5/7 6:37:15
hint: Updates were rejected because the tip of your current branch is behind!
问题
本地仓库往远段仓库推代码时候提示:
error: failed to push some refs to 192.168.2.1:java-base/java-cloud.git hint: Updates were rejected because the tip of your current branch is behind! refs/heads/master:refs/heads/master [rejected] (…
建站知识
2025/5/7 5:39:57
704. 二分查找 C++
文章目录 一、题目链接二、参考代码三、所思所悟 一、题目链接
链接: 704. 二分查找 二、参考代码
int search(const vector<int>& nums, int target) {int left 0; int right nums.size() - 1;//左闭右闭[]while (left < right){int mid (left right) / 2;…
建站知识
2025/5/6 12:39:41