How to Communication with bootloader using SWD pins of MCU?
I want to write my own custom bootloader program so I want to communicate with MCU using SWD data & clk pins but how can I use this pins?
I want to write my own custom bootloader program so I want to communicate with MCU using SWD data & clk pins but how can I use this pins?
Hi I use UART very rarely and I would like to disable gpio:void Disable_Not_Used_Pins(void) { /* Disable UART pins*/ GPIO_InitTypeDef GPIO_InitStruct = {0}; GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3; GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; GP...
Hello,I am using ST-LINK/V2 (STM32 Nucleo-64) to debug a custom board, which the custom board use STM32F105VC MCU.The HW connections are as follow: SWD, Custom Board3.3V, 3.3VSWCLK, PA14GND, GNDSWDIO, PA13NRST, PB4 (NJTRST)SWO, Not useMaybe E1 (NRST)...
After the Write-Enable command has been executed, the "HAL_OSPI_AutoPolling()" function will be called but, at the line of :status = OSPI_WaitFlagStateUntilTimeout(hospi, HAL_OSPI_FLAG_SM, SET, tickstart, Timeout);time out event will be accrued and s...
I have written 0x96 in an external flash at 0th address for 256 lengths and while reading it back the first byte had 0x16 and the rest of the bytes had 0x96 and this issue is observed occasionally.Settings:MCU: STM32L433SPI: SPI 1 in DMABit rate: 24M...
Hi guys,I have a short question regarding the STM32L552ZET6 power domaines. Can I use 1v8 to power the chip and connect a 3v3 power supply on the VDDIO2 which I will power on from time to time(when I need to use those pins)? And another thing if I do...
Hi, I'm currently using STM32F401RE Nucleo-64 Board. My current objective is to store all the data collected from ISM330DLC Accelerometer, into SD card through SDIO protocol.BackgroundMost of the setup is based on Code generation, using STM32CubeIDE ...
I am using STM32L073RZT.If RTOS is not used, the current consumption will drop to 1μA in STOP mode.When using RTOS with STM32CubeMX, it only drops to about 40 μA.How can we achieve a few μA?
Hello dear ST-Community,here is a brief explaination of my problem:I'm using multiple stepper-motors in my system.I want to use 3 timers per stepper.Timer generates the PWM signal for the stepper-driver (easy to achive)Timer captures the signal of th...
I've a camera using lvds protocol, now using LVDS to LVTTL converter connect to stm32f730r8t6.I want to decode lvds data and fifo it to USB.But first problem is could stm32 decode 20Mhz lvttl clock?I've tried to use tim input captuer clock and usin...