未验证 提交 4f53743e 编写于 作者: G guo 提交者: GitHub

Merge pull request #5734 from Guozhanxin/finsh

[finsh] Fixed RT-Thread spelling
...@@ -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
...@@ -55,7 +55,7 @@ long version(void) ...@@ -55,7 +55,7 @@ long version(void)
return 0; return 0;
} }
MSH_CMD_EXPORT(version, show RT - Thread version information); MSH_CMD_EXPORT(version, show RT-Thread version information);
rt_inline void object_split(int len) rt_inline void object_split(int len)
{ {
......
...@@ -52,7 +52,7 @@ int msh_help(int argc, char **argv) ...@@ -52,7 +52,7 @@ int msh_help(int argc, char **argv)
return 0; return 0;
} }
MSH_CMD_EXPORT_ALIAS(msh_help, help, RT - Thread shell help.); MSH_CMD_EXPORT_ALIAS(msh_help, help, RT-Thread shell help.);
#ifdef MSH_USING_BUILT_IN_COMMANDS #ifdef MSH_USING_BUILT_IN_COMMANDS
int cmd_ps(int argc, char **argv) int cmd_ps(int argc, char **argv)
......
...@@ -281,6 +281,11 @@ def MDK45Project(tree, target, script): ...@@ -281,6 +281,11 @@ def MDK45Project(tree, target, script):
out.close() out.close()
def MDK4Project(target, script): def MDK4Project(target, script):
if os.path.isfile('template.uvproj') is False:
print ('Warning: The template project file [template.uvproj] not found!')
return
template_tree = etree.parse('template.uvproj') template_tree = etree.parse('template.uvproj')
MDK45Project(template_tree, target, script) MDK45Project(template_tree, target, script)
...@@ -297,6 +302,10 @@ def MDK4Project(target, script): ...@@ -297,6 +302,10 @@ def MDK4Project(target, script):
def MDK5Project(target, script): def MDK5Project(target, script):
if os.path.isfile('template.uvprojx') is False:
print ('Warning: The template project file [template.uvprojx] not found!')
return
template_tree = etree.parse('template.uvprojx') template_tree = etree.parse('template.uvprojx')
MDK45Project(template_tree, target, script) MDK45Project(template_tree, target, script)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册