I am using Keil Development environment for stm32g071 nucleo board. Which device should I choose? stm32g071rbIx or stm32g071rbTx? And how do I decide which one is correct for me?
I am sorry, the clock_init function actually had one more line. but while writing the question here, i did a mistake.void clock_init(void){ RCC->CR &= ~(RCC_CR_HSIDIV); RCC->CR |= RCC_CR_HSION; RCC->IOPENR |= RCC_IOPENR_GPIOAEN;}I am enabling the clo...