Hello,I have just got a new board that I purchased using the STM32F030F4P6 MCU.This is a Mini Developing board that you can get from Ali Express and it is good as well IMHO.The Board that I have is:And I am bit struggling to make it to work under Ard...
Hi All; I would like to measure active power. DataTx[0] = 0xFF; DataTx[1] = 0x00; DataTx[2] = 0xA0; DataTx[3] = 0x00; DataTx[4] = Metro_HAL_CalcCRC8(DataTx); HAL_SPI_TransmitReceive(&hspi1, (uint8_t *)DataTx, (uint8_t *)DataRx, sizeof(DataTx),10...
Hi,I need help getting signal data from EVB with BG96 module using STM32L476RG MCU.
how to convert uint8_t to string and show in SSD1306_Putsi try like this.uint8_t check;SSD1306_Puts("choose dreep"+String(uint8_t), &Font_7x10, 1);
I would like to know more about the following interrupts so that I learn when to use them. Where can I find details about them?TIM1 Break interruptTIM1 Update interruptTIM1 trigger and commutation interrupt, specially this oneTIM1 Capture Compare in...
Hello to everyone,recently I've got STM32F769I-DISCO board with B-LCD40-DSI1 that contains 4" LCD and touch panel. But it hasn't been a single day that I knocked over the board and broke the touch panel so it doesn't work now. So now I'm searching fo...
Hello,I'm using the RTC Alarm to wakeup the MCU every 10min and after 10PM, sleep for 10 hrs. However, I noticed that the RTC just actually sleeps for 8:25 min and when it wakes up, the RTC time says 10minutes have passed. To illustrate:Current time ...
Dear ST Forum Members,I'm experimenting with STM32L011K4T6 Nucleo,with ADC_LowPower Example project, I saw this :uhADCxConvertedValue = HAL_ADC_GetValue(&AdcHandle);If I want to use two channels of ADC, what should I modify,I've done ://ADCx Channel...