STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Read Out Protection

Hi.My code generation is almost done. I want to lock the code so that no one else can conveniently reach and use my code. I want that for future development to erase the code and reprogram it. I read some information provided by ST and I think I have...

How to properly use SPI communication in STM32L053 ??

Hello.I am working on a project and using STM32L053 board.For now, my goal is to create a channel of SPI communication, master & slave, an to test my code.I am using only 1 ST board which serves both as master and slave. I have defined all necessary ...

CAN message not sent.

Hi! CAN message not sent. Please see where I'm wrong?int main (void){ SysClock(); CanInit(); CanFilter(); CAN_ConfigInterupt(); while(1) { TransmitMsg(); delay(100); }}void CanInit (void){ //PA12 - CAN=TX //PA11 - CAN-RX RCC->APB2ENR |= RCC_APB2E...

Hosting by Associate III
  • 624 Views
  • 3 replies
  • 0 kudos

Connecting DS3231 to F767ZI via I2C1

Dear STM32 Users,I have a DS3231 module connected to my board, with SCL wired to PB_6 and SDA wired to PB9, per specification. I configured the project with STCube.I see no signal on PB_6. Can anyone advise?Code is attached. main.c contains the logic...