User Activity

If I create a program using stmcubeIDE and ADD the code below it bricks the processor . I gather in some way I am overwritting the bootloader that controls stlink and get the errorTarget no device foundError in initializing ST-LINK device.Reason: No ...
I have been attempting to write to flash on an stm32G030 and manually changed the erase_init.Page = address & ~(FLASH_PAGE_SIZE - 1); to erase_init.Page = 11; and this bricked the device and is no longer able to be connected to an STlink is there any...
DAC restricted to 0.5volt on a stm32L432 when you add a gpio_output to any PB and appears to be the line __HAL_RCC_GPIOB_CLK_ENABLE(); added to MX_GPIO_Initwith static void MX_GPIO_Init(void){ GPIO_InitTypeDef GPIO_InitStruct = {0}; /* GPIO Ports Clo...
Im attempting to put the cpu to sleep between ticks of timer 15 on a stm32L432, The LED flashs without the Sleep code however it never wakes up from the timer interuptvoid HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef * htim) { HAL_ResumeTick(); if...
I am  reading 64bit values from flash uint64_t DATA_read = *(__IO uint64_t *)0x0801E010;Where THE FLASH ADDERSS 0x0801E010 contains 5A5A5A5A 00440040DATA_read value afer this read is 0x400044005a5a5a5aif I read uint64_t DATA_read = *(__IO uint64_t *)...