STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Connect Sensortile to Microsoft Azure

Hi guys, i would ask if someone has a tutorial that shows how to connect a sensortile to Azure IoT. I have already created an IoT apllication on Microsotf Azure, i have Device Id and the SAS (Shared Access Signatures) but i don't understand what i h...

ACarl.3 by Associate II
  • 547 Views
  • 1 replies
  • 0 kudos

Resolved! Using STM32CubeIDE project and MCU STM32H750. After calling HAL_DMA_Start() data is transferring, but the hdma_memtomem_dma2_stream1.State is still in HAL_DMA_STATE_BUSY. So calling the abort HAL_DMA_Abort() and transferring the next set of data

// Following is the DMA Initialization.DMA_HandleTypeDef  hdma_memtomem_dma2_stream1;main(){::: /* Initialize all configured peripherals */ MX_DMA_Init();HAL_DMA_Start(&hdma_memtomem_dma2_stream1, (uint32_t)&g_aui16SourceVal[0], (uint32_t)&g_auc16Des...