User Activity

#include<stdint.h>#include "usart.h"voidclock_init(void);voidclock_init(void){ RCC->CR &= ~(RCC_CR_HSIDIV); RCC->CR |= RCC_CR_HSION;}int main(){ clock_init(); usart_init(); while(1) { }}#include <stdint.h>#include "stm32g0xx.h"         // Device head...
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?