User Activity

Hello I was trying to send some data to the console using USART1 (STM32F7508-DK).With the following simple data there was no problem:uint8_t data[] = "HELLO! \r\n";HAL_UART_Transmit(&huart1, data, sizeof(data), 1000);But when I try to display values...
Hello I was doing setup from that tutorial on STM32F7508-DK:https://www.youtube.com/watch?v=2LQpaz44Ug4&ab_channel=STMicroelectronicsI replaced ADC with I2C and make callback from Master Receive instead of ADC Callback.void HAL_I2C_MasterRxCpltCallb...
Hello I'm trying to include main.c into Screen1View.cpp but I do not have any idea how to do it.I need to use array of 64 elements from main file into Screen1View file (the array is called current_temp).Does anyone have any idea how to do it? If so,...
Hello I'm new with TouchGFX and I'm doing official TouchGFX tutorials.I came up with the problem - code is properly generated and target/simulation can be run, but when I use buttons up/down then not number but question mark is displayed.I'm using S...