STM32 MCUs products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

New possibilities for the ultra-low power segment!

STM32U0 is the first Cortex-M0+ with a static consumption of only 160 nA in standby mode with RTC (Real-Time Clock) and 16 nA in shutdown. It also achieves 118 points in CoreMark and targets SESIP level 3 and PSA level 1 focusing on firmware code pro...

gif-stm32u0.gif

STM32G071 Temperature Sensor stabilization time

HiIn CubeIDE the temperature sensor stabilization time for my STM32G071 is defined by: stm32g0xx_ll_adc.h#define LL_ADC_DELAY_TEMPSENSOR_STAB_US ( 10UL)But in the Datasheet I see at least 15µs max for Tstart(ts_buf) and for Tstart itself its alrea...

0693W000005AhmIQAS.png
PGroe.2 by Associate III
  • 246 Views
  • 2 replies
  • 0 kudos

interrupt problem

Hi thereI am using a STM32F103C8T6. I defined this pins as External Interrupt:PB4 - GPIO_MODE_IT_RISINGPC13-GPIO_MODE_IT_RISING_FALLINGPC14-GPIO_MODE_IT_RISING_FALLINGPC15-GPIO_MODE_IT_RISING_FALLINGthe problem is that every time I SET/RESET PB4, it ...

Ala by Senior
  • 390 Views
  • 6 replies
  • 0 kudos

Resolved! Error with pointer to a typedef struct

Hello, I have a problem with a typedef struct.I made a typedef struct :typedef struct BMP280_HandleTypeDef{  uint16_t dig_T1;  int16_t dig_T2;  int16_t dig_T3;} BMP280_HandleTypeDef ;In my function I declare the instance of it :void myfunction{BMP280...

Prisma by Associate II
  • 750 Views
  • 2 replies
  • 0 kudos

HAL_UART_Receive_IT (&huart3, Rx_data, 4) ?

Dear Members,I have this code :HAL_UART_Receive_IT (&huart3, Rx_data, 4);I tested from RealTerm, it worked but I need to click "send" 4 times,How can I make it only one click for the whole string ?In STM32 side :char Rx_data[10]; char buf2 [] = "123...

Labels