Posted on May 17, 2011 at 12:26I have used an other way to measure frequency : I use a standard input and retrieve the value each second. Here is the code. It works up to 450kHz, on 3 different inputs. Here is the main code : int main (void) { /* S...
Posted on May 17, 2011 at 12:26Hello, I would like to measure the frequency of 3 differents signal (max frequency = 100kHz). What is the best way to handle this problem? > Use the Timers 2,3 and 4 in Input Capture mode and check the value of the cou...
Posted on May 17, 2011 at 12:26I have found a way to do the trick : I use sprintf. In the following example, I run an ADC conversion and send the return value through USART. int main(void) { #ifdef DEBUG debug(); #endif unsigned int value=0; volati...
Posted on May 17, 2011 at 12:26Hello, I am actually trying to develop a communication between hyperterminal and STM3210 eval board. I would like to transmit real/string/integer by an easy way. Is there some functions to make this conversions (intege...
Posted on May 17, 2011 at 12:22I am new too. I suggest you to run and understand the examples available on the website. It helps a lot to understand how it works. The file stm32f10x_it.c contains all the interruptions. You need to add the disk_timep...