I am using an STM32F303CB with HAL/LL version 1.10.0It seems that TIM2 is not available in the drivers for this part as RCC_CFGR3_TIM2SW is not defined.Is this a fault with the driver library or a configuration from Cube?Thanks
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...