Thanks. But what will cause the ISR context to block? Some RTOSes has special functions to call only inside ISR. Why RT-Thread have not?
发布于9年前
Thanks. But what will cause the ISR context to block? Some RTOSes has special functions to call only inside ISR. Why RT-Thread have not?
发布于9年前
Thanks. But what will cause the ISR context to block?
发布于10年前
Hi Bernard,
I tryed compile these plugins and I’ve got a lot of errors. Can you upload to repository or this Forum the plugin compiled in .jar format?
What development enviroment(operating system,IDE,etc) you use to build and debug RT-Thread applications?
Best Regards.
发布于10年前
Hi Bernard,
Thanks for your reply. It’s all clear to me now.
发布于10年前
Bernard. Could you clear this question? Can I use this RTOS in a commercial application without expose my application code?
If no, why not modify the RTThread licence to one like FreeRTOS?
I believe that RTThread has potential to be great in commertial applications.
发布于10年前
Hi,
Thanks for the support. I already has a code that a conversion of a null pointer like this one generated an error. The pointer was like this
(void *)0
THis type of conversion was not allowed. Bellow follows the result of arm-none-eabi-gcc -v command
发布于10年前
I’m trying to compile the demo_listview_icon.c from the RTGUI demo folder. I’ve downloaded RTGUI 0.8 and I believe that the demo examples are outdated. There was some headers files that was not found in the source code, for example “toplevel.h”. Do exist a new RTGUI version for download? Is correct the use of the code bellow in the demo_listview_icon.c?
application = RTGUI_APPLICATION(rtgui_widget_get_toplevel(widget));
Is there some manual in english format for RTGUI or RTThread?
Where can I configure my LCD driver and Touch driver to RTGUI use them?
Regards.
发布于10年前
The error is that GCC don’t accepts a null pointer like this
((type )0)
I need to include stdio.h and change to this
((type )NULL)
Tnks
发布于10年前
I’m using LPC176x bsp and using eclipse with your default make build tool, but this error is not a build error and a compile error. The compiler don’t acepts this macro because it found a sintax error. Did you compile the RT-Thread 1.2.0 with GCC?
问 Semaphore inside ISR