HI,I’m working on ETH and FreeRTOS on the STM32H745 Nucleo-144. I’ve read about various problems on this forum about using the ethernet as detailed belowhttps://community.st.com/s/question/0D53W00000rZ8ZvSAK/corrupted-eth-rx-buffer-in-stm32h7?t=16291...
I create a STM32CubeMx project (test.ioc) for a NUCLEO-H745ZI-Q board and select PPL3 to clock the ADC, but the function PeriphCommonClock_Config() is not generated unless I also clock the USB from PPL3 as well.After enabling a single ADC1 channel I ...
printf works on the STM32H747 M7 core once I add the following codeint _write(int file, char *ptr, int len)
{
int i =0;
for ( i = 0 ; i < len; i++)
{
ITM_SendChar((*ptr++));
}
return len;
}and enable the "SWV" in the debug...
Hi,I've created a ioc for the NUCLEO-G474RE dev board to generate an interrupt for HRTIM_TIMER_INDEX_TIMER_A/C/D/E.The code is generated correctly except for TIMER_E where STM32CubeMX disables the interrupt by replacing HRTIM_TIM_IT_CMP3 with HRTIM_M...
I am trying to set up my NUCLEO-G474RE board to perform ADC regular scanning mode using DMA with 4 channels and also discontinuous injection with 2 channels as shown below.But when I run my code the injected channels always return zero or one, even i...
Hi All,just to let you know all of the required changes has been added to at least version STM32Cube_FW_WB_V1.12.1.But they have rename EVT_BLUE_GATT_WRITE_PERMIT_REQ to ACI_GATT_WRITE_PERMIT_REQ_VSEVT_CODE to keep up with their naming convention.che...
I managed to get trace working from the M4. I had to set the SWV - Core Clock: setting to the M7 clock speed and not the M4 clock speed.If you enable trace logging from one core the IDE wont allow you to enable the 2nd core. If you get in this situa...
Hi,I just had the same problem. Did you solve this problem? Looking at the memory map that area of memory is only accessible from the M7. I'm using the M4, so I wonder if that's my problem.When I use the M7 it works fine.cheersChris