• Exception type generated upon hardware reset
    On a power up, the SoC asserts some reset signal to the Cortex A processor and it ends up generating an exception. The exception vector on the just powered up processor is implementation defined, but...
  • Exception type generated upon hardware reset
    On a power up, the SoC asserts some reset signal to the Cortex A processor and it ends up generating an exception. The exception vector on the just powered up processor is implementation defined, but...
  • TYPE GEN: TYPE TOO COMPLEX
    This is the error message I get. The projext is for the NXP P80C51MC2. The code size is around 400K bytes. This occurs after I add another instance of a structure to the code. I have about 450 instances...
  • TYPE GEN: TYPE TOO COMPLEX
    This is the error message I get. The projext is for the NXP P80C51MC2. The code size is around 400K bytes. This occurs after I add another instance of a structure to the code. I have about 450 instances...
  • enum type mixed with another type
    I'm getting a warning "enumeration type mixed with another type" with the following line of code. typedef enum { FALSE = 0, TRUE = !FALSE } bool; bool bResult; bool bAAA; bool bBBB; bResult = bAAA...