minor cleanup, include epydoc in Makefile
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 5 Aug 2018 09:19:03 +0000 (10:19 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 5 Aug 2018 09:19:03 +0000 (10:19 +0100)
Makefile
src/bsv/actual_pinmux.py
src/spec/pinfunctions.py

index 0ef674ee233e3ee5df650637c57e21ec793da1b5..746f0c8a9d9334a35aeff094695052709b92fb5b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,3 +22,9 @@ clean:
 
 pep8:
        autopep8 -a -a -a --experimental -r -i src
+
+epydoc:
+       cd src && epydoc -o ../html -v --show-imports \
+            --inheritance listed --graph all \
+            pinmux_generator.py spec/ bsv/
+
index 1d1fcd405c4538238f7dfcd391dc213297ea47cc..7a3eede7c79ac712c4c434254b79248612d019d5 100644 (file)
@@ -137,11 +137,12 @@ def init(p, ifaces):
         that column.
 
         text is outputted in the format:
-            x_out =
-                muxer_sel==0 ? a :
-                muxer_sel==1 ? b :
-                muxer_sel==2 ? 0 :
-                d
+
+        x_out =
+            muxer_sel==0 ? a :
+            muxer_sel==1 ? b :
+            muxer_sel==2 ? 0 :
+            d
 
         last line doesn't need selector-logic, obviously.
 
index 00d97e49f41e0de1bddeb57f8131c6ac3061ed49..cdfaab49aa77b4fe5d4aaaa4d79d283288a113e7 100644 (file)
@@ -37,8 +37,8 @@
     sdmmc is never going to do anything other than switch this entire
     bank all at once.  so in this particular example, sdmmc returns:
 
-        (['CMD+', 'CLK+', 'D0*', 'D1*', 'D2*', 'D3*'] # pin names
-         ['D0*', 'D1*', 'D2*', 'D3*'])                # ganged bus names
+    (['CMD+', 'CLK+', 'D0*', 'D1*', 'D2*', 'D3*'] # pin names
+     ['D0*', 'D1*', 'D2*', 'D3*'])                # ganged bus names
 """