I am using stm32cubeIDE for FreeRTOS on stm32f429. As cubemx has option to adjust heap and stack size on generating code in "Project Manager" project tab. While FreeRTOS has also column of heap adjustment in config parameter in cubeMX.Question: From...
Posted on April 09, 2018 at 14:10As STM32L151ZCTx has 40 adc. There are two banks to select adc channels for conversion. In CubeMX, ADC can have only one bank selected at a time. I have following questions:1) BANK A has 29 channels, But cubeMX shows...
Posted on June 07, 2017 at 12:59
Hi,
Variable PWM is not working. So i looked at theexample code provided in 'STM32Cube_FW_F4_V1.0\Projects\STM324x9I_EVAL\Examples\TIM\TIM_DMA'
Based on example, modified code generated using cubeMx.
Pl...
Posted on May 25, 2017 at 08:47Hi, Generally i do likeOption 1)unsigned char tmp;unsigned char *ptr='Hello World!';for(tmp=0;tmp<10;tmp++){ HAL_UART_Transmit(&huart1,ptr,strlen(ptr),100); HAL_Delay(10); //10ms}Option 2)Start TIM2 ,which gener...