Forum Posts
STM32 F1 USBX usage problems
I first refer to the x-cube-azrtos-h7 example on STM32 H7 to migrate ThreadX and USBX. CDC HID, including the combination of the two, have been tested, and they all work normally.Then I ported ThreadX and USBX on STM32 F105RBT6. Currently, they can e...
Bug in Low-Level driver LL_SPI_ReceiveData16
Affected driver library: STM32Cube_FW_U5 v1.0.0 and patch v1.0.2File: stm32u5xx_ll_spi.hFunction affected: LL_SPI_ReceiveData16Bug: Current implementation performs a 32bit access to RXDR register and then casts the result to 16 bits. This leads to un...
LL_ADC_ConfigOverSamplingRatioShift is not using correct ratio mask for ADC3 on STM32H73x CubeMX v6.3.0
Currently there is only:__STATIC_INLINE void LL_ADC_ConfigOverSamplingRatioShift(ADC_TypeDef *ADCx, uint32_t Ratio, uint32_t Shift){ MODIFY_REG(ADCx->CFGR2, (ADC_CFGR2_OVSS | ADC_CFGR2_OVSR), (Shift | (((Ratio - 1UL) << ADC_CFGR2_OVSR_Pos))));}which...
Resolved! How many PVD in STM32G4xx? Error in RM0440 or in devices files ?
In RM0440 R6 6.2.3 there is "Each of the four PVMx (x=1, 2)". So 4 or 2 PVM ?In the PWR_CR2 register 6.4.2:Bit 7 PVMEN2: Peripheral voltage monitoring 4 enableBit 6 PVMEN1: Peripheral voltage monitoring 3 enable=> PVMEN1 is for PVM1 or PVM3?=> Only 2...
Does the USB as a mass storage device enter a sleep state? if so, how do i prevent this?
The ADCs I'm logging data from occasionally shut off and then come back on and start streaming data. When this happens, the USB seems to have entered a sleep state as the write time for the packet header goes from taking ~20 milliseconds to taking up...
How to change Timebase source of Nucleo-h745ziq board
Hello,I am working on Nucleo-h745ziq board. I am working on Azure Rtos Usbx .I have to change the setting of Timebase source but in Nucleo-h745ziq board is default setting how I can change it?