Skip to content

Commit 0ef459d

Browse files
committed
fix(wokwi-attiny85): broken links
1 parent 7950f1d commit 0ef459d

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/parts/wokwi-attiny85.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The ATtiny85 is a small 8-bit AVR microcontroller. It has 8KB of Flash program m
1010
## Pin names
1111

1212
| Pin | Name | Functions | Analog Channel |
13-
| --- | ---- | ----------------- | -------------- |
13+
|-----|------|-------------------|----------------|
1414
| 1 | PB5 | Reset | 0 |
1515
| 2 | PB3 | | 3 |
1616
| 3 | PB4 | | 2 |
@@ -23,12 +23,12 @@ The ATtiny85 is a small 8-bit AVR microcontroller. It has 8KB of Flash program m
2323
## Attributes
2424

2525
| Name | Description | Default value |
26-
| --------- | -------------------------------------------------------------------------- | ------------- |
26+
|-----------|----------------------------------------------------------------------------|---------------|
2727
| frequency | MCU clock frequency, in hertz. Common values: "1m", "8m", "16m", and "20m" | "8m" |
2828

2929
### Debug prints with TinyDebug
3030

31-
You can use the [TinyDebug library](https://github.com/wokwi/TinyDebug) to print debug messages from your code. These messages appear in Wokwi's Serial Monitor. To use the library, include "TinyDebug.h" in your project and create a [libraries.txt](../../guides/libraries) file with the text "TinyDebug" in it.
31+
You can use the [TinyDebug library](https://github.com/wokwi/TinyDebug) to print debug messages from your code. These messages appear in Wokwi's Serial Monitor. To use the library, include "TinyDebug.h" in your project and create a [libraries.txt](../guides/libraries) file with the text "TinyDebug" in it.
3232

3333
Call `Debug.begin()` and then print your debug messages using `Debug.println()`:
3434

@@ -83,7 +83,7 @@ For a complete code example, check out the [TinyDebug demo project on Wokwi](htt
8383
### Serial Output
8484

8585
The ATtiny85 doesn't have a dedicated UART peripheral, but it it still possible to get Serial Output using the Software Serial library.
86-
For more information and demo code, please see the [Serial Monitor Guide](../../guides/serial-monitor#attiny85--softwareserial).
86+
For more information and demo code, please see the [Serial Monitor Guide](../guides/serial-monitor#attiny85--softwareserial).
8787

8888
### I2C
8989

@@ -93,18 +93,18 @@ For I2C communication use the [TinyWireM](https://github.com/adafruit/TinyWireM)
9393

9494
The ATtiny85 is simulated using the [AVR8js Library](https://github.com/wokwi/avr8js). The table below summarizes the status of features:
9595

96-
| Peripheral | Status | Notes |
97-
| ----------------- | ------ | -------------------------------------------------- |
98-
| Processor | ✔️ | |
99-
| GPIO | ✔️ | 6 GPIO pins (PB0...PB6), INT0 / PCINT support |
100-
| USI | 🟡 | Only works in I2C mode |
101-
| Timer0 | ✔️ | PWM support for PB0/PB1 |
102-
| Timer1 || |
103-
| Watchdog Timer | ✔️ | |
104-
| EEPROM | ✔️ | |
105-
| ADC | ✔️ | Used by analogRead() |
106-
| Analog Comparator || |
107-
| GDB Debugging | ✔️ | See the [GDB Debugging Guide](../../gdb-debugging) |
96+
| Peripheral | Status | Notes |
97+
|-------------------|--------|-------------------------------------------------|
98+
| Processor | ✔️ | |
99+
| GPIO | ✔️ | 6 GPIO pins (PB0...PB6), INT0 / PCINT support |
100+
| USI | 🟡 | Only works in I2C mode |
101+
| Timer0 | ✔️ | PWM support for PB0/PB1 |
102+
| Timer1 | | |
103+
| Watchdog Timer | ✔️ | |
104+
| EEPROM | ✔️ | |
105+
| ADC | ✔️ | Used by analogRead() |
106+
| Analog Comparator | | |
107+
| GDB Debugging | ✔️ | See the [GDB Debugging Guide](../gdb-debugging) |
108108

109109
Legend:
110110
✔️ Simulated

0 commit comments

Comments
 (0)