From 74838904ab812e30ec73cce0480481dced403f08 Mon Sep 17 00:00:00 2001
From: nrs1g15 <nrs1g15@soton.ac.uk>
Date: Sat, 29 Jun 2019 23:30:17 +0100
Subject: [PATCH] Update README.md

---
 README.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index ba58e39..a39c9ec 100644
--- a/README.md
+++ b/README.md
@@ -23,18 +23,18 @@ since Atmel Studio requires files from the Arduino IDE install, and will look fo
 
 The uploader used is avrdude which is provided by the Arduino IDE installer. Atmel Studio can upload compiled programs through the provided avrdude by adding it as an external tool,
 this is done by tools->External Tools...->Add. This allows you to add a new external tool which Atmel Studio can invoke to upload compiled Debug or Release .hex files. 
-Debug and Release .hex **Have** to be added seperately, below is an example for adding the Arduino Pro Mini for both Debug and Release versions:
+Debug and Release .hex HAVE to be added seperately, below is an example for adding the Arduino Pro Mini for both Debug and Release versions:
 
 
-Title: 328p Release USBasp
-Command: C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avrdude.exe
-Arguments: -C"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.conf" -patmega328p -carduino -P\\.\COM16 -b57600 -D -Uflash:w:"$(ProjectDir)Release\$(TargetName).hex":i
+    Title: 328p Release USBasp
+    Command: C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avrdude.exe
+    Arguments: -C"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.conf" -patmega328p -carduino -P\\.\COM16 -b57600 -D -Uflash:w:"$(ProjectDir)Release\$(TargetName).hex":i
 
-Title: 328p Release USBasp
-Command: C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avrdude.exe
-Arguments: -C"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.conf" -patmega328p -carduino -P\\.\COM16 -b57600 -D -Uflash:w:"$(ProjectDir)Debug\$(TargetName).hex":i
+    Title: 328p Release USBasp
+    Command: C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avrdude.exe
+    Arguments: -C"C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.conf" -patmega328p -carduino -P\\.\COM16 -b57600 -D -Uflash:w:"$(ProjectDir)Debug\$(TargetName).hex":i
 
-	Things to note:
+Things to note:
 * **USBasp** refers to the fact USBasp is the driver used for programming the avr based devices here.
 * **-P//./COM16** The comm port the device is attached to.
 * **-patmega328p** The device programming to, the Arduino Pro Mini has an Atmega 328p.
-- 
GitLab