I am debugging why Ethernet is not working on a setup with stm32f107 + DP83848. Right now I was verifying that the MCO (main clock out) from the stm32f107 is doing what it should by checking with a scope. But MCO output doesn't seem to be working at ...
I am using STM32CubeIDE to configure an stm32f107vc on a custom board. I selected half duplex on uart1, with a pin remap, and received the following setup code: /**USART1 GPIO Configuration
PB6 ------> USART1_TX
*/
GPIO_InitSt...
Thank you!!!If I am analyzing this correctly it turns out MX_GPIO_Init() is called after SystemClock_Config(), and for some reason the following code is generated for me in MX_GPIO_Init(): /*Configure GPIO pin : PA8 */
GPIO_InitStruct.Pin = GPIO_...
Thank you for the answer. Do you mean that I should set a pullup like this? GPIO_InitStruct.Pin = GPIO_PIN_6;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
GPIO_InitStruct.Pull = GPIO_PULLUP;
...