forked from Hay1tsme/artemis
Begin the process of transitioning from megaime
This commit is contained in:
36
core/const.py
Normal file
36
core/const.py
Normal file
@ -0,0 +1,36 @@
|
||||
from enum import Enum
|
||||
|
||||
class MainboardPlatformCodes():
|
||||
RINGEDGE = "AALE"
|
||||
RINGWIDE = "AAML"
|
||||
NU = "AAVE"
|
||||
NUSX = "AAWE"
|
||||
ALLS_UX = "ACAE"
|
||||
ALLS_HX = "ACAX"
|
||||
|
||||
class MainboardRevisions():
|
||||
RINGEDGE = 1
|
||||
RINGEDGE2 = 2
|
||||
|
||||
RINGWIDE = 1
|
||||
|
||||
NU1 = 1
|
||||
NU11 = 11
|
||||
NU2 = 12
|
||||
|
||||
NUSX = 1
|
||||
NUSX11 = 11
|
||||
|
||||
ALLS_UX = 1
|
||||
ALLS_HX = 11
|
||||
ALLS_UX2 = 2
|
||||
ALLS_HX2 = 12
|
||||
|
||||
class KeychipPlatformsCodes():
|
||||
RING = "A72E"
|
||||
NU = ("A60E", "A60E", "A60E")
|
||||
NUSX = ("A61X", "A69X")
|
||||
ALLS = "A63E"
|
||||
|
||||
class RegionIDs(Enum):
|
||||
pass
|
Reference in New Issue
Block a user