We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64bd625 commit 60ea844Copy full SHA for 60ea844
include/csp/interfaces/csp_if_can.h
@@ -51,7 +51,7 @@ struct csp_can_config {
51
*/
52
int csp_can_init(uint8_t mode, struct csp_can_config *conf);
53
54
-csp_queue_handle_t * get_csp_can_queue();
+void * get_csp_can_queue();
55
56
#ifdef __cplusplus
57
} /* extern "C" */
src/interfaces/csp_if_can.c
@@ -115,7 +115,7 @@ static csp_thread_handle_t csp_can_rx_task_h;
115
static csp_queue_handle_t csp_can_rx_queue;
116
117
118
-csp_queue_handle_t get_csp_can_queue(){
+void * get_csp_can_queue(){
119
120
return csp_can_rx_queue;
121
}
0 commit comments