摘要: Linux线程操作 要点: #include <pthread.h> // 包含pthread.h头文件,用于线程操作 ret1=pthread_create(&thread1,NULL,thread_function,"Hello Thread1");//创建线程 void *thread_fun 阅读全文
posted @ 2025-01-06 20:19 沁拒离 阅读(35) 评论(0) 推荐(0)
摘要: Linux命令行连接蓝牙设备 查看Bluetooth设备: hciconfig 启动一个Bluetooth设备,例如:hci0: hciconfig hci0 up 相关指令 查看特定的Bluetooth设备(例如,设备名为hci0): hciconfig hci0 关闭一个Bluetooth设备( 阅读全文
posted @ 2025-01-06 16:26 沁拒离 阅读(1324) 评论(0) 推荐(1)