汉子字模的读取

时间:2016-03-22 05:18:22
【文件属性】:

文件名称:汉子字模的读取

文件大小:4KB

文件格式:C

更新时间:2016-03-22 05:18:22

汉子字模

汉子字模的读取C++源程序 /*----------------------------------------*/ /*字符IC驱动函数文件,16P1Y_Driver.c------*/ /*----------------------------------------*/ #include #include "16P1Y_Driver.h" void C16P1Y_Init(void) //操作16p1y的芯片时,设置各控制线的方向 { CS_Direction(); SO_Direction(); SI_Direction(); SCLK_Direction(); } unsigned char SPI_Trsend_Ch_Mode0(unsigned char datu ) //模拟时序访问字符芯片 { unsigned char cnt_clk; unsigned char temp; unsigned char ret_datu; for( cnt_clk = 0; cnt_clk < 8; cnt_clk++ ) { GT_SCLK_CLR(); ret_datu = ret_datu<<1; if(SO) ret_datu++; temp = datu&0x80; if( temp > 0 ) GT_SI_SET(); else


网友评论