摘要: 阅读全文
posted @ 2024-05-22 10:35 Keepkit 阅读(30) 评论(0) 推荐(0)
摘要: pkg-config是一个linux下的命令,用于获得某一个库/模块的所有编译相关的信息。 例子: pkg-config opencv –libs –cflags 结果: -I/usr/include/opencv /usr/lib/x86_64-linux-gnu/libopencv_calib3 阅读全文
posted @ 2024-05-13 15:34 Keepkit 阅读(49) 评论(0) 推荐(0)
摘要: #查看 boot 挂载 uuid efi xxx@dellhome:~$ cat /etc/fstab # /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique iden 阅读全文
posted @ 2023-09-23 10:20 Keepkit 阅读(148) 评论(0) 推荐(0)
摘要: qt5应用odbc 使用mysql 要点 apt-get install mysql-server apt-get install mysqlclient-dev 配置mysql-server 可以安装 apt-get install mysql-workbench apt-get install 阅读全文
posted @ 2023-08-27 16:49 Keepkit 阅读(107) 评论(0) 推荐(0)
摘要: Program Size: Code=14360 RO-data=344 RW-data=14448 ZI-data=4920 1、Code 是代码占用的空间。 2、RO-data是 Read Only 只读常量的大小,如const型。 3、RW-data是(Read Write) RW是可读可写变 阅读全文
posted @ 2022-04-05 16:57 Keepkit 阅读(51) 评论(0) 推荐(0)
摘要: 汩余若将不及兮,恐年岁之不吾与。 阅读全文
posted @ 2021-06-11 08:37 Keepkit 阅读(21) 评论(0) 推荐(0)
摘要: SerialDataReceivedEventHandler无反映不要忘记这2属性赋值。 serialPort1.DtrEnable = true; serialPort1.RtsEnable = true; 阅读全文
posted @ 2020-01-16 15:50 Keepkit 阅读(737) 评论(1) 推荐(0)
摘要: public partial class Form1 : Form { public Form1() { InitializeComponent(); Dog dog = new Dog(); InsertDog(dog); dog.OnAlert(); //Console.WriteLine(); 阅读全文
posted @ 2020-01-16 15:47 Keepkit 阅读(257) 评论(0) 推荐(0)