• Using far or huge pointer, which is faster?
    I have an array defined in RAM. The array is defined 40 bytes. I do interpolation on the array by passing the address of the array as a huge pointer to int to the interpolation function. For the C167CS...
  • Using far or huge pointer, which is faster?
    I have an array defined in RAM. The array is defined 40 bytes. I do interpolation on the array by passing the address of the array as a huge pointer to int to the interpolation function. For the C167CS...
  • On Cortex-M4F microcontrollers: is fixed point math faster or floating point?
    Hi, I am using S32K14x controllers (Coretx-M4F). It has floating point math unit. I need to perform many mathematical operations as fast as possible. Which will be faster: fixed point q16 or fixed point...
  • On Cortex-M4F microcontrollers: is fixed point math faster or floating point?
    Hi, I am using S32K14x controllers (Coretx-M4F). It has floating point math unit. I need to perform many mathematical operations as fast as possible. Which will be faster: fixed point q16 or fixed point...
  • long long int for floating average computation
    I want to compute a floating average of third order. Just take a look at my code: void IRQ_Handler()__irq __ram { static long long unsigned int ACC1,ACC2,ACC3,ACC3D; static long long unsigned...