User Activity

Hi,This is using the STM32H7S78-DK.So I have a stm32cubeide project containing two sub projects1. `STM32H7S78-DK_Appli`2. `STM32H7S78-DK_Boot``STM32H7S78-DK_Boot` is not changing, code changes are in `STM32H7S78-DK_Appli`.The only way I can find to d...
Hi Guys,This is driving me mad!So this works perfectly echoing characters via uart8:  int ch = 'A'; while (1) { HAL_UART_Transmit(&huart8, (uint8_t *)&ch, 1, 0xFFFF); HAL_UART_Receive(&huart8, (uint8_t *)&ch, 1, 0xFFFF); }  Now if I have getchar ...
Hi Guys,So this is with a TouchGfx Cube v6.7.0 generated project with FW 1.11.0I have added OpenAmp via Cube and based the code I am adding on the old PingPong example.The following line fails with -2005 (RPMSG_ERR_BUFF_SIZE):int32_t status = OPENAMP...
So here Usart1 is shared in the code generated though we have defined in the CM7 and CM4 main.c files:UART_HandleTypeDef huart1;The uart is setup in the CM4 main:static void MX_USART1_UART_Init(void) {   /* USER CODE BEGIN USART1_Init 0 */   /* U...
The generated code:/* Definitions for TouchGFXTask */ osThreadId_t TouchGFXTaskHandle; const osThreadAttr_t TouchGFXTask_attributes = { .name = "TouchGFXTask", .stack_size = 3048 * 4, .priority = (osPriority_t) osPriorityNormal, };andTouchGFXTa...
Kudos given to