• Can I code STM32F103RBT6 into Assembly Langauage rather than C or C++?
    Hi Everyone! I have STM32F1xx family microcontroller. I've coded some projects into C language. Now, I want to code this microcontroller into Assembly laguage. If Yes, I can then please give an example...
  • when #ifdeffing a testsnippet
    when #ifdeffing a testsnippet it is, often, desirable to be able to do this: code .... code .... #ifdef DOIT BOOL flag if (flag) .... Keil does not allow definitions in the middle of a routine...
  • RTX4 millisecond limits rather low
    In RTOS1, e.g. in RTX4.xx, calls like osSignalWait() take a timeout which the caller passes in units of milliseconds. This millis value then undergoes a transformation to systicks in rt_ms2tick (rt_CMSIS...
  • debug messages using ifdef
    Hi, there's one pin depending on his level (high or low), the programm should / or should not transmit all the rs232 debug messages (printf()) to the hyperterminal. How is it possible to use...
  • hide undefined #ifdef sections in µV4 editor
    Is is posible to hide undefined sections? in case of several possible controllers i use something like that: #define CONTR2 #ifdef CONTR1 ... #else #ifndef CONTR3 ... #endif ... #endif...