User Activity

I closed out of my project last night, and tried opening it today and kept having it just freeze on the homepage of the STM32cubeide. I even tried creating a new project and nothing. I even tried reinstalling but still same error. When I try to close...
I tried adding this to the linker file/* used by the startup to initialize data */ _sidata_RAM_D3 = LOADADDR(.data_RAM_D3); /* Initialized data sections goes into RAM_D3, load LMA copy after code */ .data_RAM_D3 :  {  . = ALIGN(4);  _sdata_RAM_D3 = ....
/* Peripheral DMA init*/ hdma_sai1_a.Instance = DMA1_Stream0; hdma_sai1_a.Init.Request = DMA_REQUEST_SAI1_A; hdma_sai1_a.Init.Direction = DMA_PERIPH_TO_MEMORY; hdma_sai1_a.Init.PeriphInc = DMA_PINC_DISABLE; hdma_sai1_a.Init.M...
  /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "pdm2pcm.h"   /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */   /* USER CODE...
Currently I am just trying to share some data between cores, and right now I'm just trying to send a constant value to confirm operation.I have this code located in a file called share.h,typedef struct {   // shared data goes here   int16_t data;   }...