PC-G850VS / シリアルIO / PCへ何かを送る

11ピンコネクターのシリアルIOを試す。ポケコンからPCへ何かを送ってみる。
f:id:ti-nspire:20180710062857p:plain:w400
(Source: http://wrabetz.de/resources/Sharp_PC-G850VS_Interface.pdf)
 

main(){
    int *fp = fopen("stdaux", "w+");
    fprintf(fp, "abAB\n");
    fclose(fp);
}

f:id:ti-nspire:20180710084554p:plain
f:id:ti-nspire:20180710084900p:plain
f:id:ti-nspire:20180710115604p:plain:w400