Skip to content

Commit 017811f

Browse files
committed
MPAE-11638: Added link to updated TB
1 parent 960ccc9 commit 017811f

File tree

7 files changed

+9
-13
lines changed

7 files changed

+9
-13
lines changed

.main-meta/main.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"content": {
55
"metaDataVersion": "1.1.0",
66
"name": "com.microchip.mcu8.studio.project.atmega4809-getting-started-with-adc-studio",
7-
"version": "1.0.0",
7+
"version": "1.0.1",
88
"displayName": "Getting Started with Analog-to-Digital Converter (ADC) Examples",
99
"projectName": "atmega4809-getting-started-with-adc-studio",
10-
"shortDescription": "This repository contains 5 bare metal code examples that show how to use the ADC peripheral of the ATmega4809 device in different modes. It is a companion to the TB3209-Getting Started with Analog-to-Digital Converter (ADC).",
10+
"shortDescription": "This repository contains 5 bare metal code examples that show how to use the Analog-to-Digital Converter (ADC) peripheral of the ATmega4809 device in different modes. It is a companion to the TB3209-Getting Started with Analog-to-Digital Converter (ADC).",
1111
"ide": {
1212
"name": "STUDIO",
1313
"semverRange": ">=7.0.2542"
@@ -41,10 +41,6 @@
4141
[
4242
"Peripherals",
4343
"ADC"
44-
],
45-
[
46-
"Development Kit",
47-
"ATmega4809 Xplained Pro"
4844
]
4945
],
5046
"peripherals": [

Event_Triggered/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The purpose of this project is to provide an example on how to configure the ADC
88
## Related Documentation
99

1010
More details and code examples on the ATMEGA4809 can be found at the following links:
11-
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](http://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-90003209A.pdf)
11+
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](https://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-DS90003209.pdf)
1212
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1313
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1414
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

Free_Running/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This example uses ADC in Free-Running mode. When configuring the ADC in Free-Run
88
## Related Documentation
99

1010
More details and code examples on the ATMEGA4809 can be found at the following links:
11-
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](http://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-90003209A.pdf)
11+
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](https://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-DS90003209.pdf)
1212
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1313
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1414
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Getting Started with Analog-to-Digital Converter (ADC) Examples (Microchip Studio)
55

6-
This repository contains examples of bare metal source code for Analog-to-Digital Converter (ADC) as described in [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](http://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-90003209A.pdf) document from Microchip. The repository contains a Microchip Studio Solution with multiple projects inside:
6+
This repository contains examples of bare metal source code for Analog-to-Digital Converter (ADC) as described in [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](https://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-DS90003209.pdf) document from Microchip. The repository contains a Microchip Studio Solution with multiple projects inside:
77

88
* [<strong>ADC Event Triggered:</strong>](Event_Triggered) The purpose of this project is to provide an example on how to configure the ADC to trigger a conversion on a specific event (for more details, see [<strong>ADC Event Triggered</strong>](Event_Triggered))
99
* [<strong>ADC Free Running:</strong>](Free_Running) This example uses ADC in Free-Running mode. When configuring the ADC in Free-Running mode, the next conversion starts immediately after the previous one completes (for more details, see [<strong>ADC Free Running</strong>](Free_Running))
@@ -13,7 +13,7 @@
1313

1414
## Related Documentation
1515
More details and code examples on the ATMEGA4809 can be found at the following links:
16-
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](http://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-90003209A.pdf)
16+
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](https://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-DS90003209.pdf)
1717
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1818
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1919
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

Sample_Accumulator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This example demonstrates how to use the sample accumulation function of the ADC
77

88
## Related Documentation
99
More details and code examples on the ATMEGA4809 can be found at the following links:
10-
- [TB3209 - Getting Started with Analog to Digital Converter (ADC)](http://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-90003209A.pdf)
10+
- [TB3209 - Getting Started with Analog to Digital Converter (ADC)](https://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-DS90003209.pdf)
1111
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1212
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1313
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

Single_Conversion/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The ADC input pin needs to have the digital input buffer and the pull-up resisto
99

1010
## Related Documentation
1111
More details and code examples on the ATMEGA4809 can be found at the following links:
12-
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](http://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-90003209A.pdf)
12+
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](https://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-DS90003209.pdf)
1313
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1414
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1515
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

Window_Comparator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This example uses the ADC in Window Comparator mode, where the device can detect
77

88
## Related Documentation
99
More details and code examples on the ATMEGA4809 can be found at the following links:
10-
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](http://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-90003209A.pdf)
10+
- [TB3209-Getting Started with Analog-to-Digital Converter (ADC)](https://ww1.microchip.com/downloads/en/Appnotes/TB3209-Getting-Started-with-ADC-DS90003209.pdf)
1111
- [ATMEGA4809 Product Page](https://www.microchip.com/wwwproducts/en/ATMEGA4809)
1212
- [ATMEGA4809 Code Examples on GitHub](https://github.com/microchip-pic-avr-examples?q=atmega4809)
1313
- [ATMEGA4809 Project Examples in START](https://start.atmel.com/#examples/ATMEGA4809XplainedPro)

0 commit comments

Comments
 (0)