How to use SDIO interface for SD Card in STM32F4 ?
Hello, I use SDIO interface to SD Card. I use FATs library. But I want to use SDIO interface. How do I do ?
Hello, I use SDIO interface to SD Card. I use FATs library. But I want to use SDIO interface. How do I do ?
Hi, I am using STM32F405.I use the Flash Sector as follows. - Sector 0: IAP - Secotr 2: Data Save - Sector 5: Main ApplicationMain Save the data in APP. And Main_APP erases Sector2 before writing the data.While erasing Sector2 from Main_APP, I notice...
HiI have used STM32F030RC.I program the flash memory, using bootloader from PA9 and PA10.I have programmed the microcontrollers first time successfully. But after some program times, I can not program them. I traced the problem. The micro goes to b...
Posted on April 10, 2018 at 06:06Anyone has ever tried to install and play with an C++ arduino oriented IDE that uses arduino libraries but implemented for STM32 micros?Have you ever heard of Sloeber?http://eclipse.baeyens.it/ Seems interesting!
Hi,My system (MCU) gets into a state where I can't debug it when i get a UART interrupt due to ORE.I even tried placing breakpoints at the places where ORE is captured in the IRQ handler - but the debugger didnt stop and I lost the connection to the ...
Segger quotes the J-link Ultra+'s target interface speed at 50MHz and an "unlimited sampling bandwidth, limited by the bandwidth of the debug interface"... Ideally I would like to plot 4 floats at atleast 10kHz sampling rate.
I made an integer Square root function: int integerSQRT, result,result2; for (integerSQRT = 0; integerSQRT < 100; integerSQRT++) if (integerSQRT*integerSQRT >= squaredResult) { result = integerSQRT - 1; // just l...
Hello all, a consulting firm has started to use the Nucleo F302R8 and the X-nucleo IHM07M1 to run our two brushless DC motors for a medical device my company makes. For my project I simply need to make the motors run back and forth for a specified am...
Hi,I am setting up STM32L4 for standby mode. From Cube and NUCLEO-L496ZG\Examples\PWR\PWR_SLEEP\Src the GPIO pin is PE6.However I don't see any Cube generated code to init this pin. Neither in example code.Should I init the PE6 as GPIO input pin?Thx ...
Posted on April 03, 2018 at 11:10 Hi, I'm using STM32F072RB and a rotary encoder (with 30 dentet) connected to TIM2 in 'encoder mode' and I can see in TIM2->CNT that it is actually counting correctly. I trying to get an interrupt on each detent...