aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/AVR
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-08-02 17:41:00 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-08-02 17:41:00 +0000
commit6ee9c2788555e3b31d0ca62a0442121ebf0b158d (patch)
tree0c4191a0b711516473a58b6eb5bf06b7b80c221d /testhal/AVR
parent52f883487b7ddab81b4d27ad63792d53fea5ee2a (diff)
downloadChibiOS-6ee9c2788555e3b31d0ca62a0442121ebf0b158d.tar.gz
ChibiOS-6ee9c2788555e3b31d0ca62a0442121ebf0b158d.tar.bz2
ChibiOS-6ee9c2788555e3b31d0ca62a0442121ebf0b158d.zip
Correction of indentation on AVR testhal Makefiles.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10352 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/AVR')
-rw-r--r--testhal/AVR/ADC/Makefile3
-rw-r--r--testhal/AVR/EXT/Makefile4
-rw-r--r--testhal/AVR/GPT/Makefile3
-rw-r--r--testhal/AVR/I2C/Makefile2
-rw-r--r--testhal/AVR/ICU/Makefile2
-rw-r--r--testhal/AVR/PWM/Makefile3
-rw-r--r--testhal/AVR/SPI/Makefile2
7 files changed, 11 insertions, 8 deletions
diff --git a/testhal/AVR/ADC/Makefile b/testhal/AVR/ADC/Makefile
index 1a85c215b..42faf2215 100644
--- a/testhal/AVR/ADC/Makefile
+++ b/testhal/AVR/ADC/Makefile
@@ -108,7 +108,7 @@ DEBUG = dwarf-2
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) $(TESTINC) \
- $(HALINC) $(OSALINC) $(PLATFORMINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) \
$(STREAMSINC) $(BOARDINC) $(CHIBIOS)/os/various
# Compiler flag to set the C Standard level.
@@ -230,6 +230,7 @@ EXTRALIBDIRS =
#---------------- External Memory Options ----------------
+
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
# used for variables (.data/.bss) and heap (malloc()).
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
diff --git a/testhal/AVR/EXT/Makefile b/testhal/AVR/EXT/Makefile
index 9a87cf0a8..67a74bf42 100644
--- a/testhal/AVR/EXT/Makefile
+++ b/testhal/AVR/EXT/Makefile
@@ -108,8 +108,8 @@ DEBUG = dwarf-2
# Each directory must be seperated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
-EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) \
- $(HALINC) $(OSALINC) $(PLATFORMINC) \
+EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) \
$(STREAMSINC) $(BOARDINC) $(CHIBIOS)/os/various
# Compiler flag to set the C Standard level.
diff --git a/testhal/AVR/GPT/Makefile b/testhal/AVR/GPT/Makefile
index 1a85c215b..42faf2215 100644
--- a/testhal/AVR/GPT/Makefile
+++ b/testhal/AVR/GPT/Makefile
@@ -108,7 +108,7 @@ DEBUG = dwarf-2
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) $(TESTINC) \
- $(HALINC) $(OSALINC) $(PLATFORMINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) \
$(STREAMSINC) $(BOARDINC) $(CHIBIOS)/os/various
# Compiler flag to set the C Standard level.
@@ -230,6 +230,7 @@ EXTRALIBDIRS =
#---------------- External Memory Options ----------------
+
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
# used for variables (.data/.bss) and heap (malloc()).
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
diff --git a/testhal/AVR/I2C/Makefile b/testhal/AVR/I2C/Makefile
index 8e5413576..ec1e72af2 100644
--- a/testhal/AVR/I2C/Makefile
+++ b/testhal/AVR/I2C/Makefile
@@ -107,7 +107,7 @@ DEBUG = dwarf-2
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) $(TESTINC) \
- $(HALINC) $(OSALINC) $(PLATFORMINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) \
$(BOARDINC) $(CHIBIOS)/os/various
# Compiler flag to set the C Standard level.
diff --git a/testhal/AVR/ICU/Makefile b/testhal/AVR/ICU/Makefile
index 7e410d01c..736c9b2ba 100644
--- a/testhal/AVR/ICU/Makefile
+++ b/testhal/AVR/ICU/Makefile
@@ -110,7 +110,7 @@ DEBUG = dwarf-2
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) $(TESTINC) \
- $(HALINC) $(OSALINC) $(PLATFORMINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) \
$(BOARDINC) $(CHIBIOS)/os/various
# Compiler flag to set the C Standard level.
diff --git a/testhal/AVR/PWM/Makefile b/testhal/AVR/PWM/Makefile
index 1a85c215b..42faf2215 100644
--- a/testhal/AVR/PWM/Makefile
+++ b/testhal/AVR/PWM/Makefile
@@ -108,7 +108,7 @@ DEBUG = dwarf-2
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) $(TESTINC) \
- $(HALINC) $(OSALINC) $(PLATFORMINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) \
$(STREAMSINC) $(BOARDINC) $(CHIBIOS)/os/various
# Compiler flag to set the C Standard level.
@@ -230,6 +230,7 @@ EXTRALIBDIRS =
#---------------- External Memory Options ----------------
+
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
# used for variables (.data/.bss) and heap (malloc()).
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
diff --git a/testhal/AVR/SPI/Makefile b/testhal/AVR/SPI/Makefile
index cc4c2b459..35b214f1c 100644
--- a/testhal/AVR/SPI/Makefile
+++ b/testhal/AVR/SPI/Makefile
@@ -108,7 +108,7 @@ DEBUG = dwarf-2
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(CHIBIOS)/os/license $(PORTINC) $(KERNINC) $(TESTINC) \
- $(HALINC) $(OSALINC) $(PLATFORMINC) \
+ $(HALINC) $(OSALINC) $(PLATFORMINC) \
$(STREAMSINC) $(BOARDINC) $(CHIBIOS)/os/various
# Compiler flag to set the C Standard level.