这个人很懒,暂无签名信息
链接1:http://m.elecfans.com/article/590410.html 链接2:https://wenku.baidu.com/view/bc84311cfad6195f312ba677.html?rec_flag=default&sxts=1533311158109 链接3:http://www.usr.cn/News/94.html
本文将演示DSP28335的CAN通讯,并用示波器验证CAN总线、CAN模块的RX、TX管脚的电压波形。话不多说,直接上代码 Uint32 TestMbox1 = 0;//用来接收mailbox里面的值 Uint32 TestMbox2 = 0; Uint32 TestMbox3 = 0; Uint32 TestMbox4 = 0; Uint32 TestMbox5 = 0; Uint3...
一、判断文件夹是否存 1、方法一 if (Directory.Exists(d:\pic)) { MessageBox.Show(存在); } else { MessageBox.Show(不存在); } 2、方法二 DirectoryInfo TheFolder = new DirectoryInfo(d:\pic); if (TheFolder.Exis...