Skip to content

Commit 560d6d9

Browse files
authored
fix(wokwi-attiny85): broken links (#220)
1 parent 83a26a4 commit 560d6d9

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/parts/wokwi-attiny85.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The ATtiny85 is a small 8-bit AVR microcontroller. It has 8KB of Flash program m
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)