User Activity

Posted on October 14, 2015 at 18:51Hi, I am using CoIDE. Unfortunately it doesn't support the F411 but the 407, so I am coding for the F407. What adjustments do I have to do (linkerscript, startup.s ?) in order to make the F407 code compile and run ...
Posted on October 12, 2015 at 01:55Hi, I am trying a very simple thing: I would like to read a register of a sensor. So the first thing I did is to write the read-register (8 bit) to the sensor. After that the DR register has been filled with dummy...
Posted on August 19, 2014 at 01:01Hi, I am not able to clear a timer update flag while the timer is enabled. I am initializing a timer and the behavior is the following:     ....     TIM_TimeBaseInit(TIM4, &TIM_TimeBaseStructure);     TIM4->SR = (ui...
Posted on August 17, 2014 at 02:04Hi, I have a device which is sending an inverted UART on the line. The startbit is 1, the stopbits are 0. The whole line is inverted, but the other syntax of uart is right. So is there e possibility for receiving th...
Posted on July 16, 2014 at 02:29 Hi! I have a small rtos and I have to write a string every 5 ms to a sdcard. This (pseudo)Code works fine: void SDTask(...){ // some init for( ;; ){ SDopen(&File); SDWriteString(&File,SDstr...