aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Code_Overview.md
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-09-23 19:37:27 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-09-23 19:37:27 -0400
commit44e2c630b3373ef0e9f8944c238032920e99007d (patch)
tree6b3f8706ee177bf73f621068867a53a39fa8d0da /docs/Code_Overview.md
parent0b918b357cb0c282d53cbdf59e1931a2054cd60a (diff)
downloadkutter-44e2c630b3373ef0e9f8944c238032920e99007d.tar.gz
kutter-44e2c630b3373ef0e9f8944c238032920e99007d.tar.xz
kutter-44e2c630b3373ef0e9f8944c238032920e99007d.zip
docs: Update documentation with new klipper github URL
The main code repository moved from https://github.com/KevinOConnor/klipper.git to https://github.com/Klipper3d/klipper.git . Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Code_Overview.md')
-rw-r--r--docs/Code_Overview.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/Code_Overview.md b/docs/Code_Overview.md
index f6a73247..1ccec14b 100644
--- a/docs/Code_Overview.md
+++ b/docs/Code_Overview.md
@@ -381,16 +381,16 @@ Useful steps:
micro-controller communication protocol to a human readable form.
5. Add support for timer dispatch from hardware interrupts. See
Klipper
- [commit 970831ee](https://github.com/KevinOConnor/klipper/commit/970831ee0d3b91897196e92270d98b2a3067427f)
+ [commit 970831ee](https://github.com/Klipper3d/klipper/commit/970831ee0d3b91897196e92270d98b2a3067427f)
as an example of steps 1-5 done for the LPC176x architecture.
6. Bring up basic GPIO input and output support. See Klipper
- [commit c78b9076](https://github.com/KevinOConnor/klipper/commit/c78b90767f19c9e8510c3155b89fb7ad64ca3c54)
+ [commit c78b9076](https://github.com/Klipper3d/klipper/commit/c78b90767f19c9e8510c3155b89fb7ad64ca3c54)
as an example of this.
7. Bring up additional peripherals - for example see Klipper commit
- [65613aed](https://github.com/KevinOConnor/klipper/commit/65613aeddfb9ef86905cb1dade9e773a02ef3c27),
- [c812a40a](https://github.com/KevinOConnor/klipper/commit/c812a40a3782415e454b04bf7bd2158a6f0ec8b5),
+ [65613aed](https://github.com/Klipper3d/klipper/commit/65613aeddfb9ef86905cb1dade9e773a02ef3c27),
+ [c812a40a](https://github.com/Klipper3d/klipper/commit/c812a40a3782415e454b04bf7bd2158a6f0ec8b5),
and
- [c381d03a](https://github.com/KevinOConnor/klipper/commit/c381d03aad5c3ee761169b7c7bced519cc14da29).
+ [c381d03a](https://github.com/Klipper3d/klipper/commit/c381d03aad5c3ee761169b7c7bced519cc14da29).
8. Create a sample Klipper config file in the config/ directory. Test
the micro-controller with the main klippy.py program.
9. Consider adding build test cases in the test/ directory.