|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
กระทู้ #2377 [C] (จาก IP: 124.121.147.26)
ขอโค้ด ภาษาC ที่ส่งไฟล์ผ่าน port rs 232 หน่อยคับ รบกวนที
รบกวนทีนะคับ ผมต้องส่งอาจาน ไม่เคยเขียนอะ
|
จากคุณ
:
So-dipp / masaru_ruykung@hotmail.com [2008-11-20 09:25:03]
|
|
ความคิดเห็น #27225 (จาก IP: 58.8.186.162)
#include <bios.h>#include <conio.h> #define COM1 0#define DATA_READY 0x100 #define SETTINGS ( 0x80 | 0x02 | 0x00 | 0x00) int main(void){ int in, out, status; bioscom(0, SETTINGS, COM1); /*initialize the port*/ cprintf("Data sent to you: "); while (1) { status = bioscom(3, 0, COM1); /*wait until get a data*/ if (status & DATA_READY) if ((out = bioscom(2, 0, COM1) & 0x7F) != 0) /*input a data*/ putch(out); if (kbhit()) { if ((in = getch()) == 27) /* ASCII of Esc*/ break; bioscom(1, in, COM1); /*output a data*/ } } return 0;} |
จากคุณ
:
sup98 [2008-11-21 01:12:48]
|
|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
|
|