User Activity

Hi,I´m reading the doc of my kits, stm32f767zi and stm32f429zi, but if anyone could help I´ll appreciate. I need start and stop a timer named htim3, as follow:if (HAL_OK!=HAL_TIM_Base_Start_IT(&htim3)) Error_Handler();But, if I execute the code twice...
Hi,I´m working with a STMF767zi and STMF429zi kits and I´d like detect ADC overrun. Sow I write the callbackup code:void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef* hadc) { flagOverRunCH1=0; if (hadc->Instance==hadc1.Instance){ // Overun detection/* ...
I´m working with a STM32F429ZI board, CubeMX 7.0, Cube IDE 1.7 and STMF32 library version 1.26.0 . I´d like configure ADC1, ADC2 and ADC3 with Tripple mode to convert 3 ADC's channels with "Regular simultaneous mode". So, I did the following tests:1)...
Hi Guys,I run the following code in a STM32F4429ZI board (a project was generated with STMCube 6.3 and I´m using Cube IDE 1.7):// Create a json objectcJSON *info;info=cJSON_CreateObject();//adding datacJSON_AddStringToObject(info,"sex","male");cJSON_...
Hi Guys,I´m working with STM32F429ZI and I´d like integrate a project with json library. What is the best way? Are there ST json library? to STM32?Where can I find examples?Thanks,Geraldo.