• Why does the SystemAnalyzer only load threads when enough time has passed before osKernelStart?
    I have experienced the problem that the SystemAnalyzer would not always load all threads. I now found out by coincidence that this happens if not enough time has passed between thread creation and Kernel...
  • RTX RTOS with IDE other than MDK
    Hello, I am a bit confused with some issues around RTX and would be grateful if one can help me to understand them. 1. Assume I want (or better said my boss wants ) to use RTX outside MDK, for example...
  • Which component is missing here?
    I am getting this error message in the component viewer To m it seems that it says that the RTX5 Kernel itself is missing, which cannot be. Or do I have the wrong version. The error message says...
  • USB host MSC stack overflow
    I managed to get usb host msc (mass storage class) running up until detection of the USB stick. while(true) { os_dly_wait(2); usbh_engine(0); // check for new devices if (!bConnected && usbh_msc_status...
  • Why not clear buffer
    Please help me to find the problem: In my program, I use UART to receive data by UART interrupt, please see following. #define uchar unsigned char #define DATALTH 255 volatile uchar SerBuffer;...