/** * Sets the Yaw register to the specified value. * * @param angleDeg Degree of Yaw [+/- 23040 degrees] * @param timeoutMs * Timeout value in ms. If nonzero, function will wait for * config success and report an error if it times out. * If zero, no blocking or checking is performed. * @return Error Code generated by function. 0 indicates no error. */ public ErrorCode SetYaw(float angleDeg, int timeoutMs) { ErrorCode retval = _ll.SetYaw(angleDeg, timeoutMs); return(retval); }