Option Bytes
hello,The option byte is configured with read and write protection, but I can program without erasing, why?FLASH_OBR = 0x03FFFFFAFLASH_WRPR = 0xFFFF0000
Ask questions, find answers, and share insights on STM32 products and their technical features.
hello,The option byte is configured with read and write protection, but I can program without erasing, why?FLASH_OBR = 0x03FFFFFAFLASH_WRPR = 0xFFFF0000
My company uses the STM32G0071CB chip. but I faced some issue.whenever I need to reboot main board, I have to reset the STM32G0071CB as wells.so I used the WWDG for resetting the chip.But sometimes, chip was not reset and CPU hang.(once a 400 times o...
Hi I need to place the math standard library in a specific memory section (otherwise, It won't be linked appropriately - luck of space)so I add to the ld file the following lines: .mylib : { . = ALIGN(4); *(.lib*); *(.libc) *(.libm) *(.libdsp); ...
Hello,I have tried implement UART Driver only with LL Library. I'm using Nucleo-H745ZIQ. Reception through DMA is not happening. Data is not getting copied to the buffer. MPU Also Configured. I'm attaching the code. Hope DMA Configuration for Rx is o...
Hello, I just started using the Nucleo board and currently I am trying to connect two Nucleo G071RB by using I2C, using one as a Master and another one as a Slave.I, however, am not able to even get a clock signal coming from the Master (measured usi...
ia m using STM32h743II MCU and I am trying to transfer SPI data from the spi4 block defined as SPI MASTER to the spi5 block defined as SPI SALVE without success using DMA.I'm looking for any basic example that actually works for transferring SPI payl...
Hello, I tried to run the RTC DS1307 first using libraries available on the internet. It was not successful. Later I tried to run the communication "manually" but it doesn't work either. Please help. The module with DS1307 works on Arduino. Through t...
I am fairly new to STM devices and I have faced the same issues after attempting to follow their guides. The board itself is able to show readings of the sensors and such within Tera Term and whatnot, but whenever WiFi is involved, the device just se...
Hello, I have written a code for I2C to act between two Nucleo boards, however, at the moment, the master board is not even giving me a signal output. I looked at the output using a Saleae Logic Analyzer and there isn't even a clock signal comin out ...