├── .gitignore ├── ATmega4809_USART_Examples.atsln ├── One_Wire_Mode ├── One_Wire_Mode.componentinfo.xml ├── One_Wire_Mode.cproj └── main.c ├── README.md ├── Receive_Control_Commands ├── Receive_Control_Commands.componentinfo.xml ├── Receive_Control_Commands.cproj └── main.c ├── Send_Formatted_Strings_Using_Printf ├── Send_Formatted_Strings_Using_Printf.componentinfo.xml ├── Send_Formatted_Strings_Using_Printf.cproj └── main.c ├── Send_Hello_World ├── Send_Hello_World.componentinfo.xml ├── Send_Hello_World.cproj └── main.c └── Synchronous_Mode ├── Synchronous_Mode.componentinfo.xml ├── Synchronous_Mode.cproj └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | */Debug 2 | .vs 3 | -------------------------------------------------------------------------------- /ATmega4809_USART_Examples.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/ATmega4809_USART_Examples.atsln -------------------------------------------------------------------------------- /One_Wire_Mode/One_Wire_Mode.componentinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/One_Wire_Mode/One_Wire_Mode.componentinfo.xml -------------------------------------------------------------------------------- /One_Wire_Mode/One_Wire_Mode.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/One_Wire_Mode/One_Wire_Mode.cproj -------------------------------------------------------------------------------- /One_Wire_Mode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/One_Wire_Mode/main.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/README.md -------------------------------------------------------------------------------- /Receive_Control_Commands/Receive_Control_Commands.componentinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Receive_Control_Commands/Receive_Control_Commands.componentinfo.xml -------------------------------------------------------------------------------- /Receive_Control_Commands/Receive_Control_Commands.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Receive_Control_Commands/Receive_Control_Commands.cproj -------------------------------------------------------------------------------- /Receive_Control_Commands/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Receive_Control_Commands/main.c -------------------------------------------------------------------------------- /Send_Formatted_Strings_Using_Printf/Send_Formatted_Strings_Using_Printf.componentinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Send_Formatted_Strings_Using_Printf/Send_Formatted_Strings_Using_Printf.componentinfo.xml -------------------------------------------------------------------------------- /Send_Formatted_Strings_Using_Printf/Send_Formatted_Strings_Using_Printf.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Send_Formatted_Strings_Using_Printf/Send_Formatted_Strings_Using_Printf.cproj -------------------------------------------------------------------------------- /Send_Formatted_Strings_Using_Printf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Send_Formatted_Strings_Using_Printf/main.c -------------------------------------------------------------------------------- /Send_Hello_World/Send_Hello_World.componentinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Send_Hello_World/Send_Hello_World.componentinfo.xml -------------------------------------------------------------------------------- /Send_Hello_World/Send_Hello_World.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Send_Hello_World/Send_Hello_World.cproj -------------------------------------------------------------------------------- /Send_Hello_World/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Send_Hello_World/main.c -------------------------------------------------------------------------------- /Synchronous_Mode/Synchronous_Mode.componentinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Synchronous_Mode/Synchronous_Mode.componentinfo.xml -------------------------------------------------------------------------------- /Synchronous_Mode/Synchronous_Mode.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Synchronous_Mode/Synchronous_Mode.cproj -------------------------------------------------------------------------------- /Synchronous_Mode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrochipTech/TB3216_Getting_Started_with_USART/HEAD/Synchronous_Mode/main.c --------------------------------------------------------------------------------