uart_read()


지정된 UART의 수신 데이터를 읽음

Description

int uart_read(int $uart_id, int/string &$rbuf [, int $rlen = MAX_STRING_LEN])

Parameters

Return Value

읽은 데이터 길이(바이트 수)

Example

<?php
include "/lib/sd_340.php";
$rbuf = "";
$rlen = 0;
uart_setup(0, 9600);    // 0번 UART를 9600 bps로 설정
while(1)
{
  uart_read(0, $rbuf);    // 0번 UART로 수신된 데이터를 읽음
  echo "$rbuf\r\n";
}
?>

See also