• Something I do like about uVision 2.34
    The new uVision 2.34 includes the following feature: listing of files included in each C source file to the Project Window - File tab. Its nice. Now, if I could just get a project to build....
  • Function "strlen()" work like "sizeof()" within Evaluation Kit
    While I am working with the Evaluation Kit (contains an old Version of C51), I used "strlen()" within a function, where the string in referenced using a pointer. The result is always 2 or 3; which is...
  • Something wrong
    double calc( int angel) { return sin(2*pi*(5/48000)*l); } Why do the function always returns zero?
  • CMSIS-RTOS RTX: something like "osDelay(0)" possible?
    Hi, I like to do a manual thread switch like osDelay will switch to a new thread, but without a timeout value, simply something like osDelay(0). As far as i can see, there is an function osThreadYield...
  • sizeof to assembler
    I use the following means of making .h files usable in assembler #ifdef CCODE // bypass structs for assembler modules structs ... such as typedef struct { ......... } E1_SEI; #endif extern...