• osTimer causing application to crash
    I started with RTX_ex2 and got it running on an STM32F3Discovery board with uVision V5.10.0.2 Then I ported this example to a Makefile based project that builds with gcc 4.8 downloaded from here: ...
  • Function malloc() cause to trigger Reset Handler
    I am working with cortex-m4 microcontroller from TI TM4C123GH6PM. I am trying to allocate the memory space by following c syntax char *target; int size=10; target=(char *)malloc(size*sizeof(char...
  • using mailboxes or semaphores causes crash
    Hi, if I make any calls to mailboxes or semaphores, my application crashes. I can't even debug what happenned, all I get is "Could not stop ARM device!". If I comment out the calls to mailboxes ...
  • Malloc
    I'm using the MCBx51 V2.1 prototype Board with the Keil uVision2 software, but I have some problems with memory allocation. This is the code that i had typed. p = malloc (1000); if (p == NULL...
  • Malloc
    How do i use the 'malloc' function. Can someone give me an example.. Thanks in advance...