User Activity

hi,The datasheet says "In this mode, the TCR flag is set when the number of bytes programmed in NBYTES is transferred"Does this mean that the flag will be set when the data is transferred from TXDR to shift register, Or, the flag will be only set if ...
Hi,I am using the RAMECC_ErrorCount example to understand the working.  /* Analyse all memory */ for(Count = 0; Count < (MEMORY_SIZE / INC_OFFSET); Count++) { CurrentData = *(__IO uint32_t *)(MEMORY_BASE + (Count * INC_OFFSET)); }  * @bri...
Hi,Some doubts on the ECC functionality on STm32h74x.How can we know if the data can be corrected for cases DEDF and DEBWDF ? I always see the DEDF and SEDF fields set in my case. This bits are set when the control is hit the main(), and then I clear...
Hi, I am trying to test my fault exceptions. In the event of an exception, I would like to get more information about the problem. In the event of an exception, I am finding the stack pointer and trying to get PC by unwinding the stack. I think the P...
Hi,What is the effect of "VoltageRange " while erasing a sector ?  Er.VoltageRange = FLASH_VOLTAGE_RANGE_1; Ret = HAL_FLASHEx_Erase(&Er, &SectorError); #define FLASH_VOLTAGE_RANGE_1 0x00000000U /*!< Flash program/erase by 8 bits */ #define FLASH_VO...