From b0d059fb24a77ecb244f0722bba2c163668a7eac Mon Sep 17 00:00:00 2001 From: jaseg Date: Sat, 8 Jun 2024 18:45:51 +0200 Subject: Initial commit --- tools/extract_pinmap.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tools/extract_pinmap.py (limited to 'tools/extract_pinmap.py') diff --git a/tools/extract_pinmap.py b/tools/extract_pinmap.py new file mode 100644 index 0000000..d2c52e8 --- /dev/null +++ b/tools/extract_pinmap.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +import click + +@click.command() +@click.option('sch_file') +def cli(): + + +if __name__ == '__main__': + cli() -- cgit