User Activity

Hi!I use an STM32F746 and I configured STM32CubeMX clock tree as is :I just use PLLI2S for the MCO2 output (for Ethernet purposes). I don't use SAI1, SAI2, I2S or SPDIF-RX, so the HAL_RCCEx_PeriphCLKConfig function does not initialize PLLI2S:HAL_Stat...
Hello,I would like to change the following settings in stm32f1xx_hal_conf.h, which is generated by STM32CubeMX :#define ETH_RXBUFNB ((uint32_t)8) /* 4 Rx buffers of size ETH_RX_BUF_SIZE */ #define ETH_TXBUFNB ...
Posted on March 20, 2018 at 15:18On STM32L476RETxvoid SystemClock_Config(void){    RCC_OscInitTypeDef RCC_OscInitStruct;    RCC_ClkInitTypeDef RCC_ClkInitStruct;    RCC_PeriphCLKInitTypeDef PeriphClkInit;    // ...     RCC_OscInitStruct.OscillatorTy...