mirror of https://github.com/openXC7/prjxray.git
36 lines
959 B
Python
36 lines
959 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2017-2020 The Project X-Ray Authors.
|
|
#
|
|
# Use of this source code is governed by a ISC-style
|
|
# license that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/ISC
|
|
#
|
|
# SPDX-License-Identifier: ISC
|
|
|
|
import os, re
|
|
|
|
|
|
def maketodo(pipfile, dbfile):
|
|
todos = set()
|
|
with open(pipfile, "r") as f:
|
|
for line in f:
|
|
line = line.split()
|
|
todos.add(line[0])
|
|
with open(dbfile, "r") as f:
|
|
for line in f:
|
|
line = line.split()
|
|
todos.remove(line[0])
|
|
for line in todos:
|
|
if line.endswith(".GND_WIRE") or line.endswith(".VCC_WIRE"):
|
|
print(line)
|
|
|
|
|
|
maketodo(
|
|
"pips_int_l.txt", "%s/%s/segbits_int_l.db" %
|
|
(os.getenv("XRAY_DATABASE_DIR"), os.getenv("XRAY_DATABASE")))
|
|
maketodo(
|
|
"pips_int_r.txt", "%s/%s/segbits_int_r.db" %
|
|
(os.getenv("XRAY_DATABASE_DIR"), os.getenv("XRAY_DATABASE")))
|