diff --git a/gatemate/chip.py b/gatemate/chip.py index a7dff05..64a5b48 100644 --- a/gatemate/chip.py +++ b/gatemate/chip.py @@ -23,6 +23,8 @@ from dataclasses import dataclass from typing import List, Dict from timing import decompress_timing +DATABASE_VERSION = 1.1 + @dataclass(eq=True, order=True) class Pad: x : int @@ -206,6 +208,9 @@ CCGM1_DEVICES = { }), } +def get_version(): + return DATABASE_VERSION + def get_all_devices(): return CCGM1_DEVICES