giúp mình giải nghĩa đoạn code chuyển dữ liệu nối tiếp sang song song này cái?
thank!
void put_row(unsigned char DATA_OUT)
{
unsigned char i,temph;
for(i=0;i<8;++i)
{
temph = DATA_OUT;
temph = temph&0x80;
if(temph==0x80)
DATA =1;
else
DATA =0;
DATA_OUT *=2;?chổ đây nè
SCK = 1;
_nop_();
_nop_();
SCK = 0;
}
}
thank!
void put_row(unsigned char DATA_OUT)
{
unsigned char i,temph;
for(i=0;i<8;++i)
{
temph = DATA_OUT;
temph = temph&0x80;
if(temph==0x80)
DATA =1;
else
DATA =0;
DATA_OUT *=2;?chổ đây nè
SCK = 1;
_nop_();
_nop_();
SCK = 0;
}
}
Comment