1. How many threads did you publish on EEWORLD in 2013?[/size][/font][/font][/font][/color][/align][color=#000][font=Helvetica, Arial, sans-serif]In total, I published 41 threads and more than 280 rep...
uchar Read_DS1302Byte(void) { uchar i; T_RST = 1; for(i=8; i>0; i--) { ACC = ACC >>1; T_IO=1; ACC7 = T_IO; T_CLK = 1; T_CLK = 0; } return(ACC); } This is to read a byte. It can run according to this p...
My company has a machine with an RS-232 interface. Now I want to connect it to a computer interface via RS-232 and read the information in the machine on the computer. The protocol diagram is as follo...
In EVC, I want to add an image to the menu. Set the property to bitmap, use CommandBar_AddBitmap(mbi.hwndMB, AfxGetApp()->m_hInstance, 1, IDB_BITMAP1, 64, 16); I want to add a 64*16 bitmap to a menu. ...