Initial commit

This commit is contained in:
jaseg 2024-06-08 18:45:51 +02:00
commit b0d059fb24
34 changed files with 18172 additions and 0 deletions

11
tools/extract_pinmap.py Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env python
import click
@click.command()
@click.option('sch_file')
def cli():
if __name__ == '__main__':
cli()