在串口例程中建立线程的代码如下:
rt-thread-write函数跟rt-thread-read函数的第一个参数都是serial
导致我很懵,我不知道我怎么建立多线程,
在第二个线程内的调用rt-thread-write函数跟rt-thread-read函数时我第一个函数参数应该用serial2?
rt_thread_t thread = rt_thread_create("serial", serial_thread_entry, RT_NULL, 1024, 25, 10);
if (thread != RT_NULL)
{
rt_thread_startup(thread);
}
else
{
ret = RT_ERROR;
}
更多回帖