为什么我的板子总显示没有字库?是我SD卡的问题还是什么问题?
2019-08-08 03:47
之前做读卡器的时候选了GL827,是看重了它封装是SOP可以直接焊接,不像一众QFN那种需要用热风枪来吹。现在GL827好像是停产了,在网上越来越难买到了,有没有可以直接替换的芯片型号?(我自己找了半天也没能找到能完全替代的,其他的比如GL857、AU9254、SL2.2S、PL2303、FT232RL之类的引脚定义和功能貌似都不一样?)
2023-05-24 10:51
自己写的一个小车程序,编译无报错,但是在proteus内P1口始终为高电位,求高手帮忙查看程序#include #define uchar unsigned char#define uint unsigned int#define motor P1 //电机动作输出#define test P0//红外检测输入volatile uchar flag;void Mforward()//前进赋值 左ENB IN4 IN3ENA IN2 IN1右{motor=0x2d;//101101}void Mturnright() //右转{motor=0x28;//101000}void Mturnleft() //左转{motor=0x05;//000101}void Mroll()//左反右正转{motor=0x35;//110101}void Mstop()//停止{motor=0x24;//100100}void flagtest()//红外检测1表示无障碍或检测到黑线{uchar temp;temp=test&0x0f;//取P0低四位switch(temp){case 0x08://未偏 1000case 0x0a://1010flag=0;break;case 0x0c://偏左 1100case 0x0e://1110flag=1;break;case 0x09://偏右1001case 0x0b:// 1011flag=2;break;case 0x0d://终点 1101case 0x0f://1111flag=3;break;case 0x00://有障碍P0^3=0case 0x01:case 0x02:case 0x03:case 0x04:case 0x05:case 0x06:case 0x07:flag=4;break;default:break;}}void main() //主函数{flagtest();switch(flag){case 0:Mforward();break;case 1:Mturnleft();break;case 2:Mturnright();break;case 3:Mroll();break;case 4:Mstop();break;}}
2015-04-11 10:32
HI, 我正在设计FPGA开发套件。在那里我想添加Nand Flash。使用nand flash与spartan系列fpga的优点是什么。我需要支持文档.reference schematics.Please Help Me。以上来自于谷歌翻译以下为原文HI,I am designing FPGA development kit . In that i would like to add Nand Flash.what will be the advantage of using nand flash with spartan series fpga. I needsupporting document .reference schematics.Please Help Me.
2019-05-23 09:55