16 lines
416 B
PHP
16 lines
416 B
PHP
<?php
|
|
$fd = di_can_open("can0");
|
|
|
|
di_can_set_nodeid($fd, "00000000000000000000000000000001");
|
|
|
|
$msg = [];
|
|
$msg['msgtype'] = DI_CAN_MSGTYPE_RAW;
|
|
$msg['ttype'] = DI_CAN_TRANSFERTYPE_REQUEST;
|
|
$msg['dtype'] = DI_CAN_RAW_DTYPE_DNCM_GPS_SENSOR_TRIGGER;
|
|
$msg['dst_id'] = DI_CAN_NODEID_BROADCAST;
|
|
$msg['ptype'] = DI_CAN_PTYPE_U16;
|
|
$msg['msg'] = hex2bin('012C');
|
|
|
|
di_can_reqrep($fd, $msg, 250);
|
|
di_can_close($fd);
|