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
IOTA_SetDeviceConfigCallback传入回调函数带的参数与SetDeviceConfigCallback的回调函数带的参数不一致
typedef int (*DEVICE_CONFIG_CALLBACK_HANDLER)(JSON *cfg); void SetDeviceConfigCallback(DEVICE_CONFIG_CALLBACK_HANDLER callbackHandler);
typedef int (*PFN_DEVICE_CONFIG_CALLBACK_HANDLER)(JSON *cfg, char *description); HW_API_FUNC HW_VOID IOTA_SetDeviceConfigCallback(PFN_DEVICE_CONFIG_CALLBACK_HANDLER callbackHandler);
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
IOTA_SetDeviceConfigCallback传入回调函数带的参数与SetDeviceConfigCallback的回调函数带的参数不一致
typedef int (*DEVICE_CONFIG_CALLBACK_HANDLER)(JSON *cfg);
void SetDeviceConfigCallback(DEVICE_CONFIG_CALLBACK_HANDLER callbackHandler);
typedef int (*PFN_DEVICE_CONFIG_CALLBACK_HANDLER)(JSON *cfg, char *description);
HW_API_FUNC HW_VOID IOTA_SetDeviceConfigCallback(PFN_DEVICE_CONFIG_CALLBACK_HANDLER callbackHandler);
The text was updated successfully, but these errors were encountered: