User Activity

Hi, I am trying to make the ADC1 on the SensorTile Evaluation board work in DMA mode. I have already gotten great help from @berendi​ on the interrupt mode for the ADC. I am still following this tutorial more or less: https://visualgdb.com/tutorials/...
/* enable ADC interrupts */ HAL_NVIC_SetPriority(ADC1_IRQn, 0x05, 0x00); HAL_NVIC_EnableIRQ(ADC1_IRQn);I have an analog input connected to the ADC1 on the SensorTile evaluation board and would like to run the ADC in interrupt mode. I mostly follow th...
Hello,I am struggling to send data via a softAP over WiFi. Setting up the softAP and connecting to it from another device works well. Now, I would need to bind the newly created socket to the desired port and that's where it fails for me. I don't kno...