• SIGABRT Abnormal termination
    What does the following mean: SIGABRT: Abnormal termination I am not using the abort() or assert() in any of my code. How can I track down what is causing this problem?
  • STM32L4xxx and RTOSv1/. Sending two signals from one ISR at the same time, to the same thread, results in abnormal behavior.
    Using uVision v5.27.1.0 (RTOS 1) with STM32L4xxx. In an ISR two different signals are sent to the same thread like below: . . osSignalSet(myTask, SIGNAL_1); osSignalSet(myTask, SIGNAL_2); ....
  • ARM DS-5 IDE quits abnormally when editing Window->Preferences->Code Templates
    Hi, Currently I am using ARM DS-5 Profecssional Edition (Version 5.22.0) Build number: 5220021 When I tried to add/edit some C/C++ source/header templates in Window->Preferences->Code Templates, The IDE...
  • return error
    coded so far int pushintomemory(unsigned char *buffer,int offset) { int i = 0; for(;;) { if(buffer[offset + i] == 0x90) { i++; } else { break; } else { j = i+2; } if(i == 5) { i = rand()%3 + 3; break;...
  • exeption return
    Can anyone halp me? I writting by assembler for stm32f051.So I can't return from exception handling (in my case this is timer update event). I have read exception entry and return from fucking programing...