• dummy isr for unused interrupts
    Hello together, I'm using the XC866-Board from Infineon. As I don't use all the availible interrupts in my program I would like to simply overwrite the NOPs of the interrupt vectors with RETIs to...
  • sEOS running a dummy tast
    Hi, Please, any one can help me to explain the following function: Q1) Function X_Init Q2) Function X Q3) Function sEOS_ISR() Q4) Function sEOS_Go_To_Sleep Code: #include <reg52.h> #define...
  • Dummy variable declaration/removal makes RTX run
    So I am developing on a STM32F746 using Keil RTX and I have this weird bug where if I declare a dummy variable at a specific emplacement the OS threads won't execute. At one point the variable was inside...
  • How to create dummy main() function in Keil?
    I am using lpc1768 MCU and id keiluvesion4. I want to create dummy main() function with different name like mains(). And i want to execute my dummy mains() function. In startup file i replaced __main...
  • Casting to a union type without using a dummy variable
    Hi all, I am trying to find a way to cast a value to a union type without the use of a dummy variable. My union definition is something like typedef union _MY_UNION { unsigned long u32; unsigned...