User Activity

Posted on March 06, 2017 at 17:48 Hi When TIM2 of this device is configured according to the screenshot, the following code will be generated: void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle) { GPIO_InitTypeDef GPIO_InitStruct;...
Posted on February 28, 2017 at 01:00HiCubeMX generates in usbd_conf.h:#define USBD_DFU_XFER_SIZE 1024This is the reported transfer size also for tools like dfu-util'Device returned transfer size 1024'But the size of pages of the flash is 2048 bytes ...
Posted on February 22, 2017 at 21:16 Hi I need to write a flag (double word) to flash to tell a botloader not to jump to the app but to start a DFU interface. The bootloader dumps the flash page which contains settings for the app and writes th...
Posted on February 13, 2017 at 16:02 Hi CubeMX 4.19 with STM32L433CCx selected generates the following code for SPI2 void HAL_SPI_MspInit(SPI_HandleTypeDef* spiHandle) { GPIO_InitTypeDef GPIO_InitStruct; if(spiHandle->Instance==SPI2) { ...
Posted on February 07, 2017 at 17:36 Hi CubeMX generates the following code for a timer (timer2) with 4 PWM channels. Each of the channels are configured with the same parameters. Obviously for channel1 the line: GPIO_InitStruct.Alter...