Ask questions, find answers, and share insights on STM32 products and their technical features.
Hello, I am using an external crystal to generate the system clock for STM32L431CCT6.How can this be shared with the rest of the devices like interface controllers. The goal is to implement Quad-SPI interface. For the purpose CAN controller MCP2515-...
I checked sd card contents and it got the required files with right permissions and formatting. I tried debugging and kStorage_OpenFileDrawPixel() used for checking the file and printing on LCD returns kstorage_ERROR_OPEN. This is demo project with...
Hi,I am working with an STM32L476RCT6. On STM32CubeMX, in "Connectivity", I make use of the "USB_OTG_FS" functionnality and I have choosen the "Device_only" mode. In "Middleware", I use the "USB_DEVICE" in "Communication Device Class (Virtual Port Co...
I was referring to data sheet of the STM32G070 to figure out the current consumption of individual peripherals to finally calculate the power consumption of those peripherals. The following table from page 50 of the document gives those details. Rang...
Hi,I'm trying to control multiple PWM signals simultanously using DMA (used for controlling LED drivers). However I'm having an issue I can't seem to trace, one of the lines puts out an additional PWM signal cycle that shouldn't be there, this is wei...
I'm trying to build a custom HID device with the STM32F401RE board.I've got a basic keyboard recognized by my PC as a HID Keyboard from STM32_USB_training_course example as I expected, and "normal" key strokes works fine (letters, Enter, page up\down...
Hi,I wrote an external loader and tested for writing , erasing sector, erasing chip, reading, using "\testbinary1M.bin". But it failed in verification. What could be the reason? EDIT: I'm checkin what's going on by a logıc analyzer. I'm not using qua...
Hello,I developed a custom-designed system with an STM32F767 microprocessor and controlled its parameters with a user interface through a Bluetooth module. When I power off then power on the system, I couldn't communicate with the circuit board. Is t...
Hi I am trying to read ID of an external FLASH.The code which reads it is shown below.uint16_t FLASH_ReadID(void) { uint16_t tempData = 0x0000; //Read ID GPIOB->BSRR |= GPIO_BSRR_BR2; //Reset FLASH CS while(!(SPI1->SR & SPI_SR_TXE)); SPI1->DR ...