• _sys_exit(int x) error
    *** Using Compiler 'V5.06 update 5 (build 528)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin' Build target 'Target 1' compiling usart.c... SYSTEM\usart\usart.c(30): error: #260-D: explicit type is missing ...
  • _sys_exit return codes
    Where can I get a list of return codes for _sys_exit? My app is hanging here and the call stack is not much use. _sys_exit is being called with 0x80. Thanks, Ben
  • Int to ASCII
    I have a uint32_t variable. I want to print its ASCII equivalent value. can anyone help me here.
  • char to unsigned int
    Hi all Here is some code char prev_ch; unsigned int chksum_read; chksum_read += (WORD)prev_ch*256; chksum_read += (unsigned int)prev_ch<<8; if prev_ch has a value of 0xDB after one of of...
  • calculate minimum & maximum of int
    hey i was wondering how to do this how to do this for an integer, now i have an integer say 50 and it changes sometimes it goes to 80 how to track this down..on time ofcourse Posted by nanix;...