STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

The QSPI Indirect read mode doesn't work

All QSPI Receive functions(receive, receive_it, receive_dma) collapse when fmode is loaded with indirect read mode(01) in case ADMODE, ABMODE and IMODE fields are zero. On STM32H743ZIT Dev board

LKauf by Associate
  • 263 Views
  • 0 replies
  • 0 kudos

Resolved! STM32F7 High Power Consumption in Standby

All, Unfortunately I don't see many useful answers to high standby power consumption on these forums. Hopefully someone has gained insight since previous questions have been asked, or my specific situation is has an alternative solution that didn't a...

ZThat by Senior
  • 1025 Views
  • 5 replies
  • 0 kudos

Clarify maximum CPU frequency

Hello,I'm confused about the capability of STM32H753 to operate at a CPU frequency of 480MHz.The datasheet mentions that 480MHz is the max CPU clock frequency under VOS0, and the reference manual describes how to activate voltage scaling to VOS0.Howe...

Gpeti by Senior II
  • 904 Views
  • 8 replies
  • 0 kudos

STM32L071KZ I2C Slave mode Code

Hello Everyone,I am working on STM32L071KZ for my next product.I have reached a level where I have to make STM32L071KZ I2C1 work in Slave mode.For making this controller I have got some sample code on the internet and tried but I am not able to this ...

Vijay1 by Associate II
  • 369 Views
  • 0 replies
  • 0 kudos

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