我正在关注教程:
我正在使用 STT API,但在 Samsung Gear S2 上调用 create_stt_handle 时收到 STT_ERROR_NOT_SUPPORTED 错误。此设备是否支持此 API,或者在服务 service_app_control 上调用此函数时出现问题:
create_stt_handle() {
int ret;
ret = stt_create(&stt);
if (STT_ERROR_NONE != ret)
{
dlog_print(DLOG_DEBUG, LOG_TAG, "create_stt_handle %#010x", ret);
}
if (STT_ERROR_NOT_SUPPORTED == ret)
{
dlog_print(DLOG_DEBUG, LOG_TAG, "create_stt_handle STT_ERROR_NOT_SUPPORTED");
}
}
void service_app_control(app_control_h app_control, void *data) {
// Todo: add your code here.
//create_stt_handle();
//set_recognition_result_cb(stt);
int error = register_accelerometer_callback(data);
//dlog_print(DLOG_DEBUG, LOG_TAG, "after create %d", error);
return;
}