How change Option Byte in program ?
Hello,I trying bootloader on STM32G070. I need change optional bit nBoot_Sel and nBoot0 to 0 in my software. How do I do this ?Thank youPeter
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
Hello,I trying bootloader on STM32G070. I need change optional bit nBoot_Sel and nBoot0 to 0 in my software. How do I do this ?Thank youPeter
I am currently trying as follows:HAL_FLASH_Unlock();HAL_FLASH_Program(FLASH_TYPEPROGRAM_HALFWORD,0x40023BFD,10);HAL_FLASH_Lock();However, no data is recorded.
Scenario:one STM32F0, as part of a bigger system, has the purpose of monitoring and controlling the power rails.To be able to update the firmware in the field, a U(s)ART connects it to the Linux ARM SoC also in the systemthe latter is supposed to pro...
Hi,I have used STM32l562-edk evk hardware and stm32cubeide for software. I have enable freertos in the project. For debug print message purpose I have created one function named as logPrint. char g_msg_buf[100];void logPrint(const char *format, ...){...
Hello, I am working on a project in which I have to write data from my adc into a µSD card using SDMMC1 peripheral.In my testing program to see the ADC1 behaviour with the DMA all work. My buffer stores the datas from my ADC using DMA and the callaba...
Hi all, how are you?. Yesterday I was unable to make the RTC work on my STM32F103C6, miraculously I've noted that the program was giving an error condition (until that moment I wasn't using the error handler function, now I'm using it) then I found t...
Hi all, how are you?. I had that what I think is bug after enable the seconds interrupt by using the macro __HAL_RTC_ALARM_ENABLE_IT(&hrtc,RTC_IT_SEC);in my main() function, then I had to put the function CLEAR_BIT(RTC->CRL,RTC_CRL_CNF);after the ...
Hi everybody,I've been trying for a while to read multiple bytes from an LIS3MDL accelerometer. I know how to read and write registers but one at a time. I can't figure it out the multiple part... So, if I want to read from reg 0x27 to 0x2D, I unders...