構文
int ComOpen(
int port
);
パラメータ
- port
-
[in] 通信ポートを指定します。
値 説明 COM3 Bluetooth SPP (Master) COM4 Bluetooth HID (Slave) COM5 Bluetooth SPP (Slave) COM9 USB VCP COM10 USB HID
デフォルトの通信設定は、通信/ボート番号毎に異なります。
SetConfig関数等の呼び出しによって設定します。
戻り値
関数が正常終了(OK)、もしくはポート指定エラー(ERROR)を返します。
解説
必要条件
ヘッダファイル:
lib.hライブラリファイル:
libSTARTUPOPH5000.a
サンプル
#include <stdio.h>
#include "lib.h"
void main(void)
{
int ch;
ComOpen(COM9); // Open the COM port
for(;;)
{
if ((ch=GetCom(0)) != -1)
{
putchar(ch);
}
if ((ch=getchar())!=EOF)
{
PutCom(ch);
}
Idle(); // Very important to lower the power consumption
}
}
最終更新日:2020/10/07