STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

how to convert uint8_t to string

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);

hande by Associate II
  • 1994 Views
  • 4 replies
  • 0 kudos

Question on TIM 1 interrupts

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...

xpp07 by Senior
  • 464 Views
  • 1 replies
  • 0 kudos

STM32F769 Discovery touch panel part number for replacing it

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...

Alex Gab by Associate III
  • 829 Views
  • 4 replies
  • 0 kudos

Resolved! STM32F070F6 RTC Alarm is off by -15% when in Standby Mode

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 ...

Multiple ADC chanell on STM32L011K4T6 ?

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...

Resolved! LSE fault recovery

Hi all,Using STM32L476.I had some issues with LSE (ready flag is never set), and so I experimented with different capacitors.During our experimentation I tried to intentionally cause the LSE to fail (never mind why) by touching its capacitors with my...

Electronic Signature for STM32F030K6

I think that this serves more as information than a question.On page 726, section 26 of RM0360, no mention is made of the memory locations and register descriptions for the unique signature. Nevertheless, stm32f0xx_ll_utils.h makes provision for acce...

UART Rx with DMA - missing bytes

Posted on May 01, 2014 at 23:28Hello there,I have an interesting problem. I am writing a hardware abstraction wrapper for UARTs on an STM32F427, and I want this particular implementation to use DMA for receiving data. I am not using DMA to transmit ...