summaryrefslogtreecommitdiff
path: root/macros/Hardware/AVR/InsertPeripheralInList.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/Hardware/AVR/InsertPeripheralInList.sci')
-rw-r--r--macros/Hardware/AVR/InsertPeripheralInList.sci17
1 files changed, 17 insertions, 0 deletions
diff --git a/macros/Hardware/AVR/InsertPeripheralInList.sci b/macros/Hardware/AVR/InsertPeripheralInList.sci
new file mode 100644
index 00000000..bafc5935
--- /dev/null
+++ b/macros/Hardware/AVR/InsertPeripheralInList.sci
@@ -0,0 +1,17 @@
+function InsertPeripheralInList(Peripheral,PeripheralListFile)
+// -----------------------------------------------------------------
+// Insert input peripheral in peripherals' list
+//
+// Input data:
+// Peripheral: Peripheral of type 'list' to be instertd in list
+// PeripheralListFile: Name of file containing list of peripheral used
+//
+// Output data:
+// None
+//
+// Author: Siddhesh Wani
+// -----------------------------------------------------------------
+
+load(PeripheralListFile,'PheripheralList');
+
+endfunction