编辑
2023-12-25
软件编程
0

image.png

编辑
2023-12-23
软件编程
0

书接上文

potplayer加速播放视频,按c。

创建交叉编译器存放位置

js
sudo mkdir -p /media/user1/V3SSDK_BUILDROOT/v3ssdk/buildroot/out

image.png

编辑
2023-12-23
软件编程
0

安装Ubuntu22.04

设置密码为root

编辑
2023-12-22
使用说明
0

image.png

编辑
2023-12-20
软件编程
0
c#
static private string GET_File_MD5(string path) { try { byte[] buffer = File.ReadAllBytes(path); ; System.Security.Cryptography.MD5 file1_md5 = MD5.Create(); byte[] retval = file1_md5.ComputeHash(buffer); StringBuilder sb = new StringBuilder(); for (int i = 0; i < retval.Length; i++) { sb.Append(retval[i].ToString("X2")); } return sb.ToString(); } catch (Exception ep) { Console.WriteLine(ep.Message); return ""; } }