14.创建线程首先,应当硬件初始化,然后再创建线程,硬件初始化是将线程中用到的硬件模块进行初始化。因为线程相当于裸机时的while循环前的初始化,例如使用ADC,先应当配置好ADC各项参数,通道等。
其次,需要就是创建线程。
一般包括:定义线程函数,定义线程栈,定义线程控制块,初始化线程,启动线程等。
本章讲解了在SARM静态内存和动态内存创建单线程和多线程task。
15.重映射串口到kt_printf函数
一般我们需要使用串口来来打印一些信息,辅助我们调试。 RT-Thread中有rt_kprintf()接口函数供我们使用,我们可以把串口、CAN、USB、以太网等输出设备映射过来,一般情况下,我们会采用串口。
rt_kprintf()函数在kservice.c中实现,是属于内核服务类的函数:
- /**
- * This function will print a formatted string on system console
- *
- * @param fmt the format
- */
- void rt_kprintf(const char *fmt, ...)
- {
- va_list args;
- rt_size_t length;
- static char rt_log_buf[RT_CONSOLEBUF_SIZE];
- va_start(args, fmt);
- /* the return value of vsnprintf is the number of bytes that would be
- * written to buffer had if the size of the buffer been sufficiently
- * large excluding the terminating null byte. If the output string
- * would be larger than the rt_log_buf, we have to adjust the output
- * length. */
- length = rt_vsnprintf(rt_log_buf, sizeof(rt_log_buf) - 1, fmt, args);
- if (length > RT_CONSOLEBUF_SIZE - 1)
- length = RT_CONSOLEBUF_SIZE - 1;
- #ifdef RT_USING_DEVICE
- if (_console_device == RT_NULL)
- {
- rt_hw_console_output(rt_log_buf);
- }
- else
- {
- rt_uint16_t old_flag = _console_device->open_flag;
- _console_device->open_flag |= RT_DEVICE_FLAG_STREAM;
- rt_device_write(_console_device, 0, rt_log_buf, length);
- _console_device->open_flag = old_flag;
- }
- #else
- rt_hw_console_output(rt_log_buf);
- #endif
- va_end(args);
- }
如果使用设备驱动,则通过设备驱动函数将rt_log_buf缓冲区的内容输出到控制台。如果设备控制台打开失败则由rt_hw_console_output函数处理,这个函数需要用户单独实现。
本书只讲解如何将串口控制台重映射到rt_kprintf函数,rt_hw_console_output函数在board.c实现:
- /**
- * [url=home.php?mod=space&uid=159083]@brief[/url] 重映射串口DEBUG_USARTx到rt_kprintf()函数
- * Note:DEBUG_USARTx是在bsp_usart.h中定义的宏,默认使用串口1
- * @param str:要输出到串口的字符串
- * @retval 无
- *
- * @attention
- *
- */
- void rt_hw_console_output(const char *str)
- {
- /* 进入临界段 */
- rt_enter_critical();
- /* 直到字符串结束 */
- while (*str!='\0')
- {
- /* 换行 */
- if (*str=='\n')
- {
- USART_SendData(DEBUG_USART, '\r');
- while (USART_GetFlagStatus(DEBUG_USART, USART_FLAG_TXE) == RESET);
- }
- USART_SendData(DEBUG_USART, *str++);
- while (USART_GetFlagStatus(DEBUG_USART, USART_FLAG_TXE) == RESET);
- }
- /* 退出临界段 */
- rt_exit_critical();
- }
16 RT-Thread的启动流程
RT-Thread采用的是先启动初始线程,然后由初始线程来创建各种应用线程,然后再关闭初始线程的方法来启动。
并且在mian函数中稍做了修改。
当你拿到一个移植好的RT-Thread工程的时候,你去看main函数,只能在main函数里面看到创建线程和启动线程的代码,硬件初始化,系统初始化,启动调度器等信息都看不到。那是因为RT-Thread拓展了main函数,在main函数之前把这些工作都做好了。
我们知道,在系统上电的时候第一个执行的是启动文件里面由汇编编写的复位函数Reset_Handler,复位函数的最后会调用C库函数__main,__main函数的主要工作是初始化系统的堆和栈,最后调用C中的main函数,从而去到C的世界。
- ; Reset handler
- Reset_Handler PROC
- EXPORT Reset_Handler [WEAK]
- IMPORT SystemInit
- IMPORT __main
- LDR R0, =SystemInit
- BLX R0
- LDR R0, =__main
- BX R0
- ENDP
但当我们硬件仿真RT-Thread工程的时候,单步执行完__main之后,并不是跳转到C中的main函数,而是跳转到component.c中的$Sub$$main函数,因为RT-Thread使用编译器(这里仅讲解KEIL,IAR或者GCC稍微有点区别,但是原理是一样的)自带的$Sub$$和$Super$$这两个符号来扩展了main函数,使用$Sub$$main可以在执行main之前先执行$Sub$$main,在$Sub$$main函数中我们可以先执行一些预操作,当做完这些预操作之后最终还是要执行main函数,这个就通过调用$Super$$main来实现。当需要扩展的函数不是main的时候,只需要将main换成你要扩展的函数名即可,即$Sub$$function和$Super$$function。
就是在执行实际main函数值之前,可以执行$Sub$$main函数,然后采用$Super$$main回到main中, RT-Thread的硬件初始化是在components.c文件中的的$Sub$$main中完成的,因此实际的main函数中就没有硬件初始化相关的code,直接就开始了线程相关的操作。
硬件初始化相关code是在$Sub$$main的rtthread_startup();语句中完成的,这个语句调用startup函数:
int rtthread_startup(void)
{
rt_hw_interrupt_disable();
/* board level initalization
* NOTE: please initialize heap inside board initialization.
*/
rt_hw_board_init();
/* show RT-Thread version */
rt_show_version();
/* timer system initialization */
rt_system_timer_init();
/* scheduler system initialization */
rt_system_scheduler_init();
#ifdef RT_USING_SIGNALS
/* signal system initialization */
rt_system_signal_init();
#endif
/* create init_thread */
rt_application_init();
/* timer thread initialization */
rt_system_timer_thread_init();
/* idle thread initialization */
rt_thread_idle_init();
/* start scheduler */
rt_system_scheduler_start();
/* never reach here */
return 0;
}
这是main.c函数:
- /**
- *********************************************************************
- * @file main.c
- * @author fire
- * [url=home.php?mod=space&uid=252314]@version[/url] V1.0
- * [url=home.php?mod=space&uid=311857]@date[/url] 2018-xx-xx
- * @brief RT-Thread 3.0 + STM32 工程模版
- *********************************************************************
- * @attention
- *
- * 实验平台:野火F429挑战者 STM32 开发板
- * 论坛 :[url=http://www.firebbs.cn]http://www.firebbs.cn[/url]
- * 淘宝 :[url=https://fire-stm32.taobao.com]https://fire-stm32.taobao.com[/url]
- *
- **********************************************************************
- */
-
- /*
- *************************************************************************
- * 包含的头文件
- *************************************************************************
- */
- #include "board.h"
- #include "rtthread.h"
- /*
- *************************************************************************
- * 变量
- *************************************************************************
- */
- /* 定义线程控制块 */
- static rt_thread_t led1_thread = RT_NULL;
- /*
- *************************************************************************
- * 函数声明
- *************************************************************************
- */
- static void led1_thread_entry(void* parameter);
- /*
- *************************************************************************
- * main 函数
- *************************************************************************
- */
- /**
- * @brief 主函数
- * @param 无
- * @retval 无
- */
- int main(void)
- {
- /*
- * 开发板硬件初始化,RTT系统初始化已经在main函数之前完成,
- * 即在component.c文件中的rtthread_startup()函数中完成了。
- * 所以在main函数中,只需要创建线程和启动线程即可。
- */
-
- led1_thread = /* 线程控制块指针 */
- rt_thread_create( "led1", /* 线程名字 */
- led1_thread_entry, /* 线程入口函数 */
- RT_NULL, /* 线程入口函数参数 */
- 512, /* 线程栈大小 */
- 3, /* 线程的优先级 */
- 20); /* 线程时间片 */
-
- /* 启动线程,开启调度 */
- if (led1_thread != RT_NULL)
- rt_thread_startup(led1_thread);
- else
- return -1;
- }
- /*
- *************************************************************************
- * 线程定义
- *************************************************************************
- */
- static void led1_thread_entry(void* parameter)
- {
- while (1)
- {
- LED1_ON;
- rt_thread_delay(500); /* 延时500个tick */
- rt_kprintf("led1_thread running,LED1_ON\r\n");
-
- LED1_OFF;
- rt_thread_delay(500); /* 延时500个tick */
- rt_kprintf("led1_thread running,LED1_OFF\r\n");
- }
- }
- /********************************END OF FILE****************************/
此内容由EEWORLD论坛网友传媒学子原创,如需转载或用于商业用途需征得作者同意并注明出处