From e3e78916215f947cf229f884df11bef7435f7d58 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 13 Nov 2021 15:11:00 +0000 Subject: [PATCH] add quick instructions on how to run pinouts.py to get some debug info --- src/soc/config/pinouts.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/soc/config/pinouts.py b/src/soc/config/pinouts.py index 1fb02fdb..95129b19 100644 --- a/src/soc/config/pinouts.py +++ b/src/soc/config/pinouts.py @@ -109,6 +109,11 @@ def load_pinouts(chipname=None): return chip if __name__ == '__main__': + # run this with: + # git submodule update --init --remote --recursive + # make mkpinmux + # python3 soc/config/pinouts.py ngi_pointer (or ls180, or other) + # it will print out a stack of debug stuff if len(sys.argv) == 2: chipname = sys.argv[1] else: -- 2.30.2