User Activity

Posted on May 30, 2014 at 15:15 Hi Is there a way to disable interrupt nesting (preemption) on the STM32F3Discovery? By default, an interrupt seems to preempt a currently executing ISR. But I want the ISRs (especially those of DMA and EXT...
Posted on October 29, 2013 at 12:51HiI wonder if there are any negative side effects when changing the system clock speed dynamically. I have an I2S audio samples transfer running (via DMA) and therefore, the CPU is put into sleep mode and the DMA i...
Posted on October 07, 2013 at 18:11 Hi I'm trying to write to the Flash ROM on my STM32F3 board (256k). Erasing a page works fine, but when I try to write a word (or half word), the MCU crashes. I'm doing what the standard peripheral l...
Posted on September 27, 2013 at 16:54HiI'm a bit confused with all the clocks and power saving options on the STM32F3 Discovery board.I'd like to minimize the power consumption by gating all unnecessary clocks and peripherals / memory.The MCU is in ...
Posted on September 27, 2013 at 14:10 Hi I run this very simple code on the STM32F3 Discovery board: int main(void) { __WFI(); return 0; } It compiles fine and I can flash it onto the STM without any problems (I'm using the ST...