• Switch based on memory pointer type in C
    Is there a way using C51/Cx51 to easily switch based on the memory type of a generic pointer? So far, the best thing I have is: void my_func(void * ptr) { switch(*(uint8_t *)&ptr) { case 0x00:...
  • Switch based on memory pointer type in C
    Is there a way using C51/Cx51 to easily switch based on the memory type of a generic pointer? So far, the best thing I have is: void my_func(void * ptr) { switch(*(uint8_t *)&ptr) { case 0x00:...
  • What is the PMU counter resolution when the processor switches between 64-bit and 32-bit mode?
    Hi experts, The PMU counter value is mentioned as 64 bit in ARMV8 manual. What is the PMU counter resolution when the processor switches between 64 bit and 32 bit mode
  • What is the PMU counter resolution when the processor switches between 64-bit and 32-bit mode?
    Hi experts, The PMU counter value is mentioned as 64 bit in ARMV8 manual. What is the PMU counter resolution when the processor switches between 64 bit and 32 bit mode
  • Does the processor frequency change when switching from secure to non secure domain?
    Hello, I am using a Nuvoton M2351 for my research. I am running into a very weird issue. I am trying to get some portions of FreeRTOS to run inside the secure domain. I am using the EventRecorder...