• put const variables into code-segment
    Hi. I want to put a (large) table of constant values into the code-segment, because I'm very low on RAM but have plenty of program-ROM. The C51-manual on page 88 says "Constant variables may also...
  • put const variables into code-segment
    Hi. I want to put a (large) table of constant values into the code-segment, because I'm very low on RAM but have plenty of program-ROM. The C51-manual on page 88 says "Constant variables may also...
  • Why does Keil drop 'const' in 'const q7_t * pCoeffs' in CMSIS/DSP/arm_fir_init_q7 () ?
    Hi, Why does Keil drop 'const' in 'const q7_t * pCoeffs' in CMSIS/DSP/arm_fir_init_q7 () ? I want my coefficients to be 'const(expr)'. CMSIS defines arm_fir_init_q7() like this: void arm_fir_init_q7...
  • Why does Keil drop 'const' in 'const q7_t * pCoeffs' in CMSIS/DSP/arm_fir_init_q7 () ?
    Hi, Why does Keil drop 'const' in 'const q7_t * pCoeffs' in CMSIS/DSP/arm_fir_init_q7 () ? I want my coefficients to be 'const(expr)'. CMSIS defines arm_fir_init_q7() like this: void arm_fir_init_q7...
  • C question: Why would one put 'static' variables in a header?
    Not Keil specific; one for the 'C' experts: Why would one put 'static' variables definitions in a header? eg, in a header file: /* * TCO count to temperature conversion table. */ static...