Forum Posts
The difference between BOOT Loader and DFU mode??
I'm studying about the DFU mode to use this.So I'm looking for documents, but I'm confused whether the DFU mode and BOOT Loader are different or the same.I think,There is various ways to communicate with the MCU in Boot Loader state like UART, I2...
Resolved! X-CUBE-AZRTOS-H7, how to use it?
I installed STM32CubeMX 6.2.0, the STM32CubeH7 1.9.0 and the X-CUBE-AZRTOS-H7 thinking that I would do Azure RTOS projects as I did using FreeRtos. Why didn't ST put Azure RTOS and its components as a midware option? As it does for FreeRtos.How to us...
Can I modify the standard HID library to add more buttons in a mouse?
Hello,I'm trying to add 5 more buttons in a mouse, to do this, with the Device configuration tool I have enabled the usb as HID (no Custom HID).To add the buttons i changed the HID_MOUSE_ReportDesc:0x05, 0x01, // Usage Page (Generic Desktop Ct...
stm32F0 CDC out of work after vector-table relocation
Hi,I have an application running on the stm32F072C8U6.It has a 'bootloader' application at 0x08000000, which successfully jumps to the 'real' application, at 0x08004000. after vector remap, GPIO USB Keypad works fine, but when PC send a message by US...
Resolved! Is there a FreeRTOS demo program for F4 or L4 ?
Is there a FreeRTOS demo program, using STM32CubeMX to set up, for:STM3240G-EVAL - EVAL with STM32F407IG MCU orSTM32L476G-EVAL with STM32L476ZGT6 orSTM32F429IDISCOVERY with STM32F429ZIT6Any help appreciated I want to use STM32CubeMX to set upany of t...
LWIP
I am having working tcp/ip project using lwip on STM32F7 using which I can send RAW data.Now I want to send text file from SD card to local server.How can I implement this.
FreeRTOS contest switching time from ISR
Hi all,In my project I need to read an ADC at a sample rate of 15KSPS. When new data becomes ready to read, the ADC pull low the DRDY line. I've configured this line as input interrupt and in the ISR a signal is sent to a task waiting for it before t...
How do you write/read from pins Pxx_C ?
For example, when using the HAL drivers to write to a pin you would normally write: HAL_GPIO_WritePin(GPIOA, GPIO_PIN_1, GPIO_PIN_RESET);But, how would you do that using PA1_C, for instance?Thank you.