提交 8763d8b7 编写于 作者: G guozhanxin

[bsp/imxrt] fix compile warnings.

上级 71841b8d
...@@ -809,4 +809,4 @@ void OSA_InstallIntHandler(uint32_t IRQNumber, void (*handler)(void)); ...@@ -809,4 +809,4 @@ void OSA_InstallIntHandler(uint32_t IRQNumber, void (*handler)(void));
} }
#endif #endif
/*! @}*/ /*! @}*/
#endif #endif
\ No newline at end of file
...@@ -33,4 +33,4 @@ ...@@ -33,4 +33,4 @@
#define FSL_OSA_TASK_ENABLE 1U #define FSL_OSA_TASK_ENABLE 1U
#endif /* OSA_USED */ #endif /* OSA_USED */
#endif /* _FSL_OS_ABSTRACTION_CONFIG_H_ */ #endif /* _FSL_OS_ABSTRACTION_CONFIG_H_ */
\ No newline at end of file
...@@ -379,7 +379,7 @@ osa_status_t OSA_SemaphoreDestroy(osa_semaphore_handle_t semaphoreHandle) ...@@ -379,7 +379,7 @@ osa_status_t OSA_SemaphoreDestroy(osa_semaphore_handle_t semaphoreHandle)
*END**************************************************************************/ *END**************************************************************************/
osa_status_t OSA_SemaphoreWait(osa_semaphore_handle_t semaphoreHandle, uint32_t millisec) osa_status_t OSA_SemaphoreWait(osa_semaphore_handle_t semaphoreHandle, uint32_t millisec)
{ {
uint32_t timeoutTicks; int32_t timeoutTicks;
assert(semaphoreHandle); assert(semaphoreHandle);
rt_sem_t sem = (rt_sem_t)(void *)(uint32_t *)(*(uint32_t *)semaphoreHandle); rt_sem_t sem = (rt_sem_t)(void *)(uint32_t *)(*(uint32_t *)semaphoreHandle);
...@@ -460,7 +460,7 @@ osa_status_t OSA_MutexCreate(osa_mutex_handle_t mutexHandle) ...@@ -460,7 +460,7 @@ osa_status_t OSA_MutexCreate(osa_mutex_handle_t mutexHandle)
osa_status_t OSA_MutexLock(osa_mutex_handle_t mutexHandle, uint32_t millisec) osa_status_t OSA_MutexLock(osa_mutex_handle_t mutexHandle, uint32_t millisec)
{ {
assert(mutexHandle); assert(mutexHandle);
uint32_t timeoutTicks; int32_t timeoutTicks;
rt_mutex_t mutex = (rt_mutex_t)(void *)(uint32_t *)(*(uint32_t *)mutexHandle); rt_mutex_t mutex = (rt_mutex_t)(void *)(uint32_t *)(*(uint32_t *)mutexHandle);
/* Convert timeout from millisecond to tick. */ /* Convert timeout from millisecond to tick. */
...@@ -642,7 +642,7 @@ osa_status_t OSA_EventWait(osa_event_handle_t eventHandle, ...@@ -642,7 +642,7 @@ osa_status_t OSA_EventWait(osa_event_handle_t eventHandle,
{ {
assert(eventHandle); assert(eventHandle);
rt_uint8_t option = 0; rt_uint8_t option = 0;
rt_uint32_t timeoutTicks; rt_int32_t timeoutTicks;
rt_uint32_t flagsSave; rt_uint32_t flagsSave;
osa_event_struct_t *pEventStruct = (osa_event_struct_t *)eventHandle; osa_event_struct_t *pEventStruct = (osa_event_struct_t *)eventHandle;
...@@ -778,7 +778,7 @@ osa_status_t OSA_MsgQGet(osa_msgq_handle_t msgqHandle, osa_msg_handle_t pMessage ...@@ -778,7 +778,7 @@ osa_status_t OSA_MsgQGet(osa_msgq_handle_t msgqHandle, osa_msg_handle_t pMessage
assert(msgqHandle); assert(msgqHandle);
rt_mq_t handler = (rt_mq_t)(void *)(uint32_t *)(*(uint32_t *)msgqHandle); rt_mq_t handler = (rt_mq_t)(void *)(uint32_t *)(*(uint32_t *)msgqHandle);
uint32_t timeoutTicks; int32_t timeoutTicks;
if (millisec == osaWaitForever_c) if (millisec == osaWaitForever_c)
{ {
...@@ -914,4 +914,4 @@ int main(void) ...@@ -914,4 +914,4 @@ int main(void)
vTaskStartScheduler(); vTaskStartScheduler();
return 0; return 0;
} }
#endif /* FSL_OSA_TASK_ENABLE */ #endif /* FSL_OSA_TASK_ENABLE */
\ No newline at end of file
...@@ -127,4 +127,4 @@ extern void DefaultISR(void); ...@@ -127,4 +127,4 @@ extern void DefaultISR(void);
/*! @}*/ /*! @}*/
/*! @}*/ /*! @}*/
#endif // __FSL_OS_ABSTRACTION_RTTHREAD_H__ #endif // __FSL_OS_ABSTRACTION_RTTHREAD_H__
\ No newline at end of file
...@@ -472,4 +472,4 @@ uint32_t LIST_GetSize(list_handle_t list) ...@@ -472,4 +472,4 @@ uint32_t LIST_GetSize(list_handle_t list)
uint32_t LIST_GetAvailableSize(list_handle_t list) uint32_t LIST_GetAvailableSize(list_handle_t list)
{ {
return ((uint32_t)list->max - (uint32_t)list->size); /*Gets the number of free places in the list*/ return ((uint32_t)list->max - (uint32_t)list->size); /*Gets the number of free places in the list*/
} }
\ No newline at end of file
...@@ -200,4 +200,4 @@ uint32_t LIST_GetAvailableSize(list_handle_t list); ...@@ -200,4 +200,4 @@ uint32_t LIST_GetAvailableSize(list_handle_t list);
} }
#endif #endif
/*! @}*/ /*! @}*/
#endif /*_GENERIC_LIST_H_*/ #endif /*_GENERIC_LIST_H_*/
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册