shithub: m8c

Download patch

ref: 8a2d297dc0fbd0233e35eb994c6f5f4e686107e6
parent: fd7bb985bc4b66a0699b034a96affab88b05aff6
author: Jonne Kokkonen <jonne.kokkonen@gmail.com>
date: Sun Apr 18 18:56:53 EDT 2021

fix readme formatting

--- a/README.md
+++ b/README.md
@@ -25,21 +25,23 @@
 
 ### Download source code
 >
- ```
+```
 mkdir code && cd code
 git clone https://github.com/laamaa/m8c.git
  ```
 
 ### Build the program
->```
+>
+```
 cd m8c
 make && sudo make install
-```
+ ```
 
 ### Find out the correct device name
 
 Connect the Teensy to your computer and look up the device name:
->```
+>
+```
 sudo dmesg | grep ttyACM
 ```
 
@@ -82,9 +84,11 @@
 
 Enjoy making some nice music!
 
+-----------
+
 ### Bonus: improve performance on the Raspberry Pi
 Enabling the experimental GL Driver with Full KMS can boost the program's performance a bit.
 
 The driver can be enabled with ```sudo raspi-config``` and selecting "Advanced options" -> "GL Driver" -> "GL (Full KMS)" and rebooting.
 
-Please note that with some configurations (for example, composite video) this can lead to not getting video output at all. If that happens, you can delete the row ```dtoverlay=vc4-kms-v3d``` in bottom of /boot/config.txt.
\ No newline at end of file
+Please note that with some configurations (for example, composite video) this can lead to not getting video output at all. If that happens, you can delete the row ```dtoverlay=vc4-kms-v3d``` in bottom of /boot/config.txt.
--