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

Is my I2C sending properly ?

Dear Members,Is my I2C at STM32F107 sending properly ?void lcd_send_cmd (char cmd) { char data_u, data_l; uint8_t data_t[4]; data_u = (cmd&0xf0); data_l = ((cmd<<4)&0xf0); data_t[0] = data_u|0x0C; //en=1, rs=0 data_t[1] = data_u|0x08; //en...

0690X000009Yfn8QAC.jpg

I2C question ?

Dear Members,I tried to initialize I2C in STM32F107but got the straight line on Logic Analyzer,I have no idea why ????The codevoid test() { data_t[0] = 0x0C; //en=1, rs=0 data_t[1] = 0x08; //en=0, rs=0 data_t[2] = 0x0C; //en=1, rs=0 data_t[3] ...

0690X000009YiLbQAK.jpg 0690X000009YiLgQAK.jpg

Which STM32F1xx support MPU?

MPU, as you know, memory protection unit.I have read​ AN4838, which tells me how to implement MPU. It also says, if you want to find out your chip support the MPU or not, look up the chip datasheet. Sadly, I checked all the stm32f1xxs datasheet, no o...

Resolved! STM32F7 SPI Runtime OR Memory access problems

Hi Community,I have a STM32F769I as a SPI slave.I want to receive up to 6kByte data in 244 Byte packets (consequently up to 25 SPI packets á 244 Byte).I am using the HAL_SPI_TxRxCpltCallback function. This function will be called after every 244 Byte...

AWent by Associate III
  • 1101 Views
  • 13 replies
  • 0 kudos
Labels