We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src/dev_model/examples/linkkit_example_gateway.c中第455行: res = HAL_ThreadCreate(&user_example_ctx->g_user_dispatch_thread, user_dispatch_yield, NULL, NULL, NULL); 对应wrappers/os/freertos/HAL_OS_Freertos.c中“HAL_ThreadCreate”函数第306~308行, if (hal_os_thread_param == NULL) { return -1; } 实例运行串口也确实打印了“...HAL_ThreadCreate Failed,...”,即定位到“src/dev_model/examples/linkkit_example_gateway.c”457行: EXAMPLE_TRACE("HAL_ThreadCreate Failed\n"); 。
res = HAL_ThreadCreate(&user_example_ctx->g_user_dispatch_thread, user_dispatch_yield, NULL, NULL, NULL);
if (hal_os_thread_param == NULL) { return -1; }
EXAMPLE_TRACE("HAL_ThreadCreate Failed\n");
请问是否有冲突?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
src/dev_model/examples/linkkit_example_gateway.c中第455行:
res = HAL_ThreadCreate(&user_example_ctx->g_user_dispatch_thread, user_dispatch_yield, NULL, NULL, NULL);
对应wrappers/os/freertos/HAL_OS_Freertos.c中“HAL_ThreadCreate”函数第306~308行,
if (hal_os_thread_param == NULL) { return -1; }
实例运行串口也确实打印了“...HAL_ThreadCreate Failed,...”,即定位到“src/dev_model/examples/linkkit_example_gateway.c”457行:
EXAMPLE_TRACE("HAL_ThreadCreate Failed\n");
。
请问是否有冲突?
The text was updated successfully, but these errors were encountered: