Skip to content

Commit 7dd9563

Browse files
committed
MPAE-8597: Update links to documents
1 parent 00fa78b commit 7dd9563

File tree

7 files changed

+10
-15
lines changed

7 files changed

+10
-15
lines changed

.main-meta/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"content": {
55
"metaDataVersion": "1.1.0",
66
"name": "com.microchip.mcu8.studio.project.atmega4809-getting-started-with-usart-studio",
7-
"version": "1.0.1",
7+
"version": "1.0.2",
88
"displayName": "Getting Started with USART",
99
"projectName": "atmega4809-getting-started-with-usart-studio",
1010
"shortDescription": "This repository contains 5 bare metal code examples described in the TB3216-Getting Started with USART.",

One_Wire_Mode/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- Please do not change this logo with link -->
21
[![MCHP](../images/microchip.png)](https://www.microchip.com)
32

43
# One Wire Mode
@@ -9,7 +8,7 @@ The applications sends the string 'Microchip.\r\n' every 500 ms through the pin
98

109
## Related Documentation
1110
More details and code examples on the ATMEGA4809 can be found at the following links:
12-
- [TB3216-Getting Started with USART](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-90003216B.pdf)
11+
- [TB3216 - Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART)](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-DS90003216.pdf)
1312
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1413
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1514
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
<!-- Please do not change this logo with link -->
21
[![MCHP](images/microchip.png)](https://www.microchip.com)
32

43
# Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART) Examples (Microchip Studio)
54

6-
This repository contains examples of bare metal source code for Universal Synchronous and Asynchronous Receiver and Transmitter (USART) as described in [TB3216-Getting Started with USART](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-90003216B.pdf) document from Microchip. The repository contains an Microchip Studio Solution with multiple projects inside:
5+
This repository contains examples of bare metal source code for Universal Synchronous and Asynchronous Receiver and Transmitter (USART) as described in [TB3216 - Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART)](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-DS90003216.pdf) document from Microchip. The repository contains an Microchip Studio Solution with multiple projects inside:
76

87
* [<strong>Send Hello World:</strong>](Send_Hello_World) This use case demonstrates how to send a string to the PC via serial communication using the USART peripheral (for more details, see [<strong>Send Hello World</strong>](Send_Hello_World)).
9-
* [<strong>Send Formatted Strings Using 'printf':</strong>](Send_Formatted_Strings_Using_Printf) This use case shows how to send formatted strings through USART. This example sends the value of a counter every 500 ms and then increases it (for more details, see [<strong> Send Fromatted Strings Using 'printf'</strong>](Send_Formatted_String_Using_Printf)).
8+
* [<strong>Send Formatted Strings Using 'printf':</strong>](Send_Formatted_String_Using_Printf) This use case shows how to send formatted strings through USART. This example sends the value of a counter every 500 ms and then increases it (for more details, see [<strong> Send Fromatted Strings Using 'printf'</strong>](Send_Formatted_String_Using_Printf)).
109
* [<strong>Receive Control Commands:</strong>](Receive_Control_Commands) This use case shows how to implement a command line interface using the USART peripheral (for more details, see [<strong>Receive Control Commands</strong>](Receive_Control_Commands)).
1110
* [<strong>Synchronous Mode:</strong>](Synchronous_Mode) This use case demonstrates how to send one character using the USART synchronous mode (for more details, see [<strong>Synchronous Mode</strong>](Synchronous_Mode)).
1211
* [<strong>One-Wire Mode:</strong>](One_Wire_Mode) This use case demonstrates how to send a character string using the USART one wire mode (for more details, see [<strong>One-Wire Mode</strong>](One_Wire_Mode)).
1312

1413
## Related Documentation
1514
More details and code examples on the ATMEGA4809 can be found at the following links:
16-
- [TB3216-Getting Started with USART](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-90003216B.pdf)
15+
- [TB3216 - Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART)](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-DS90003216.pdf)
1716
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1817
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1918
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)
2019

20+
2121
## Software Used
2222
- Microchip Studio 7.0.2397 or newer [(microchip.com/mplab/microchip-studio)](https://www.microchip.com/mplab/microchip-studio)
2323
- ATmega_DFP 1.5.362 or newer Device Pack

Receive_Control_Commands/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- Please do not change this logo with link -->
21
[![MCHP](../images/microchip.png)](https://www.microchip.com)
32

43
# Receive Control Commands
@@ -10,7 +9,7 @@ This project shows how to use the Universal Synchronous and Asynchronous Receive
109

1110
## Related Documentation
1211
More details and code examples on the ATMEGA4809 can be found at the following links:
13-
- [TB3216-Getting Started with USART](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-90003216B.pdf)
12+
- [TB3216 - Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART)](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-DS90003216.pdf)
1413
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1514
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1615
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

Send_Formatted_String_Using_Printf/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- Please do not change this logo with link -->
21
[![MCHP](../images/microchip.png)](https://www.microchip.com)
32

43
# Send Formatted Strings Using 'printf'
@@ -7,7 +6,7 @@ This example demonstrates how to send formatted messages through the Universal S
76

87
## Related Documentation
98
More details and code examples on the ATMEGA4809 can be found at the following links:
10-
- [TB3216-Getting Started with USART](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-90003216B.pdf)
9+
- [TB3216 - Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART)](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-DS90003216.pdf)
1110
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1211
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1312
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

Send_Hello_World/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- Please do not change this logo with link -->
21
[![MCHP](../images/microchip.png)](https://www.microchip.com)
32

43
# Send 'Hello World!'
@@ -7,7 +6,7 @@ This project shows how to send the string "Hello world!\r\n" through the Univers
76

87
## Related Documentation
98
More details and code examples on the ATMEGA4809 can be found at the following links:
10-
- [TB3216-Getting Started with USART](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-90003216B.pdf)
9+
- [TB3216 - Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART)](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-DS90003216.pdf)
1110
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1211
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1312
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

Synchronous_Mode/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- Please do not change this logo with link -->
21
[![MCHP](../images/microchip.png)](https://www.microchip.com)
32

43
# Synchronous Mode
@@ -7,7 +6,7 @@ This project demonstrates how to use synchronous mode for the Universal Synchron
76

87
## Related Documentation
98
More details and code examples on the ATMEGA4809 can be found at the following links:
10-
- [TB3216-Getting Started with USART](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-90003216B.pdf)
9+
- [TB3216 - Getting Started with Universal Synchronous and Asynchronous Receiver and Transmitter (USART)](https://ww1.microchip.com/downloads/en/Appnotes/TB3216-Getting-Started-with-USART-DS90003216.pdf)
1110
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1211
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1312
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

0 commit comments

Comments
 (0)