st_ioctl()


지정된 ST(소프트웨어 타이머)의 설정 및 사용

Description

void st_ioctl(int $st_id, string $cmd)

Parameters

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

Return Value

없음

Example

<?php
include "/lib/sd_340.php";
st_ioctl(0, "set div us");  // 0번 ST의 단위를 마이크로초로 설정
st_ioctl(0, "set mode free");  // 0번 ST를 프리모드(카운터모드)로 설정
st_ioctl(0, "set dir up");  // 0번 ST를 업카운터로 설정
st_ioctl(0, "start");  // 0번 ST 가동
sleep(1);
st_ioctl(0, "stop");  // 0번 ST 정지
?>

See also