User Activity

Hello friends,We use ST-Link when assigning programs to STM8 processors. ST-Link uses the SWIM leg when assigning programs to STM8 processors. We all know that.I want to make a device. Special bootloader. This device should be able to assign programs...
Hi guys,I want to write data to the flash memory of the Stm8s003f3p6 processor. I can read / write to this processor's eeprom. But I can read the flash memory, but I can't write it. I write my codes with "IAR Embedded Workbench for STM8". I check the...
Hi guys,The STM32F072C8 microprocessor has a total of 31 flash pages. Each page is 2 kb in size. Thus, the processor has 64 (2x32) kb flash memory. The interesting thing is that I can read / write on page 63. How is that possible?Thanks.
Hi guys,I'm using a bootloader. I am using 2 UART channels in the bootloader program. At the same time, I use these uart channels in the program I will install. But they don't work. The program enters the HardFault Error interrupt. When sending data ...
Hi guys,Bootloader program is doing jump. But my application code interrupts don't work.HAL_Delay () does not work.HAL_GPIO_TogglePin (GPIOA, PA0_LED_Pin);HAL_Delay (1000); // IS NOT WORKwhile (i ++ <1500000) {} // THIS WORKi = 0;So the led is blinki...