ht_ioctl()


지정된 HT(하드웨어 타이머)의 설정 및 사용

Description

int ht_ioctl(int $ht_id, string $cmd)

Parameters

$cmd에 사용 가능한 명령어의 종류 및 사용법은 PHPoC Device Programming Guide for P40 을 참조하시기 바랍니다.

Return Value

사용 명령어에 따른 반환 값

Example

<?php
include "/lib/sd_340.php";
ht_ioctl(0, "set div us");  // 0번 HT의 단위를 마이크로초로 설정
ht_ioctl(0, "set mode output pulse");  // 0번 HT를 펄스출력모드로 설정
ht_ioctl(0, "set count 100 100");  // 펄스의 주기를 200마이크로초, 듀티 사이클을 50%로 설정
ht_ioctl(0, "set repc 2");  // 펄스의 출력횟수를 2로 설정
ht_ioctl(0, "start");  // 0번 HT 가동
sleep(1);
ht_ioctl(0, "stop");  // 0번 HT 정지
?>

See also