Posted on May 17, 2011 at 09:50Hi, I'm trying to generate 44100Hz out of the timer3 PWM output with PCLK 48MHZ. unfortunately, PWM frequency is too slow. here my code: SCU_PCLKDivisorConfig(SCU_PCLK_Div2); SCU_PLLFactorsConfig(192, 25, 2); /* Conf...
Posted on May 17, 2011 at 09:48Thank you asterix.magigimix I'm trying to create a DAC in str912 for my MP3 player, and i don't know the TIM configuration for my application someone have examples? Thank you very much in advance
Posted on May 17, 2011 at 09:48Hi I want to execute multiple inline-assembler-commandos one after another, so i tried it this way: static inline int FASTABS(int x) { int t=0; asm ('' eor t, x, x, asr #31 '' ''sub t, t, x, asr #31 ''); return t; ...