CubeFwF1 gcc linker script error
Hi,Errors are present in the gcc linker script in the CubeFwF1 package v1.7.0 (last package).There are the number 0 instead the empty lines.
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
Hi,Errors are present in the gcc linker script in the CubeFwF1 package v1.7.0 (last package).There are the number 0 instead the empty lines.
The main loop of the HID_Standalone example is: while(1) { USBH_Process(&USBHost); HID_MenuProcess(); } The problem is when a slow process is put in the loop: while(1) { HAL_Delay(10); //or any slow process > 8ms USBH_Process(&USBHost)...
Hi,I use custom USB device class implementation on top of ST's USB device stack (generated by CubeMX). I need only core implementation but i can not generate it without specifying some USB class from list in CubeMX!This is pretty annoying because i h...
The version of FatFs is rather old, please consider upgrading this to reflect the latest release from Chan so that errors/issues that have been addressed don't need to be revisited or make it into delivered products.Had an issue today with an interna...
Hello,I'm a newbie trying to use an ESP8266 with my STM32F0Discovery board using the UART peripheral in order to send data to a web server. Is anyone familiar with this? Could someone help me out with steps/a tutorial I could follow? I looked around ...
I have a STM32F030C6 on a custom board and I want to use it as an I2C slave device.With the example given with the cube hal (FW 1.9) I got it working. Kind of.I can write data from the master to the slave. But I have problems reading data from the de...
Hi, Want to be able to flash the target device( an STM32F446) using a propritary CAN interface. EI not use the bootloader default CAN flashing method. As i understand it I must first make a IAP binary and flash using the bootloader by SWD. To then ad...
I am using the HAL libraries to interface to the flash on the STM32G071GBU6. Specifically, I am attempting to make use of a non-volatile flash interface to read/write 1 user parameter byte to flash. While using HAL_FLASHEx_Erase right before HAL_FLAS...
Hello,I try to download STM32cubeH7 HAL 1.1.0, but seems that only latest version (1.3.0) is available on st site.Is there a way to find older version ?Thank you!Ran
Hello,i am using STM32L053 (slave) and STM32F103(master) for I2C communication. When i look in the HAL for I2C there is a while loop "while (HAL_I2C_GetState(&I2cHandle) != HAL_I2C_STATE_READY)" where i have to wait all the time for the data being se...