User Activity

Posted on March 28, 2017 at 02:36main.c generated by STM32CubeMX creates two different prototypes for SystemClock_Config. One with static and one without static./* Private function prototypes -----------------------------------------------*/void Sys...
Posted on March 24, 2017 at 07:28I'm trying to make a interrupt handler which doesn't use FreeRTOS function and preemption priority is higher than FreeRTOS, say 2.However every time I load .ioc file, STM32CubeMX checks the 'Uses FreeRTOS functions' ...
Posted on November 01, 2016 at 10:27Currently, HAL_PWR_EnableWakeUpPin() enables wakeup-pin before it sets polarity. The calling order should be reversed.void HAL_PWR_EnableWakeUpPin(uint32_t WakeUpPinPolarity){  assert_param(IS_PWR_WAKEUP_PIN(WakeU...
Posted on October 14, 2016 at 02:43STM32CubeMX generates MX_GPIO_Init() which calls HAL APIs in following order,static void MX_GPIO_Init(void){  __HAL_RCC_GPIO_CLK_ENABLE();  ...  HAL_GPIO_Init();  ...  HAL_GPIO_WritePin();This calling order makes a...
Posted on June 28, 2016 at 06:581. Open DAC Configuration and set Data Width to ''Half Width'' .2. Generate code. Generated stm32f7xx_hal_msp.c has following lines despite the ''Half Width'' setting.    hdma_dac1.Init.PeriphDataAlignment = DMA_PDATA...
Kudos from