From ec28fcd9f905358759eea98161f451567135d17e Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 27 Aug 2023 22:31:09 +0200 Subject: new driver blinkenlights --- driver_fw/tools/extract_pinmap.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 driver_fw/tools/extract_pinmap.py (limited to 'driver_fw/tools/extract_pinmap.py') diff --git a/driver_fw/tools/extract_pinmap.py b/driver_fw/tools/extract_pinmap.py new file mode 100644 index 0000000..d2c52e8 --- /dev/null +++ b/driver_fw/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