feature: add support for S19kProNoPIC BOS. Reformat.

This commit is contained in:
Upstream Data
2023-12-16 10:54:51 -07:00
parent 201cfd7ef9
commit 4459de2260
29 changed files with 144 additions and 180 deletions

View File

@@ -15,12 +15,7 @@
# ------------------------------------------------------------------------------
from pyasic.miners.backends import M6X
from pyasic.miners.types import (
M60VK10,
M60VK20,
M60VK30,
M60VK40,
)
from pyasic.miners.types import M60VK10, M60VK20, M60VK30, M60VK40
class BTMinerM60VK10(M6X, M60VK10):

View File

@@ -15,12 +15,7 @@
# ------------------------------------------------------------------------------
from pyasic.miners.backends import M6X
from pyasic.miners.types import (
M60SVK10,
M60SVK20,
M60SVK30,
M60SVK40,
)
from pyasic.miners.types import M60SVK10, M60SVK20, M60SVK30, M60SVK40
class BTMinerM60SVK10(M6X, M60SVK10):

View File

@@ -15,11 +15,7 @@
# ------------------------------------------------------------------------------
from pyasic.miners.backends import M6X
from pyasic.miners.types import (
M66SVK20,
M66SVK30,
M66SVK40,
)
from pyasic.miners.types import M66SVK20, M66SVK30, M66SVK40
class BTMinerM66SVK20(M6X, M66SVK20):
@@ -31,4 +27,4 @@ class BTMinerM66SVK30(M6X, M66SVK30):
class BTMinerM66SVK40(M6X, M66SVK40):
pass
pass

View File

@@ -14,39 +14,9 @@
# limitations under the License. -
# ------------------------------------------------------------------------------
from .M60 import (
BTMinerM60VK10,
BTMinerM60VK20,
BTMinerM60VK30,
BTMinerM60VK40,
)
from .M60S import (
BTMinerM60SVK10,
BTMinerM60SVK20,
BTMinerM60SVK30,
BTMinerM60SVK40,
)
from .M63 import (
BTMinerM63VK10,
BTMinerM63VK20,
BTMinerM63VK30,
)
from .M63S import (
BTMinerM63SVK10,
BTMinerM63SVK20,
BTMinerM63SVK30,
)
from .M66 import (
BTMinerM66VK20,
BTMinerM66VK30,
)
from .M66S import (
BTMinerM66SVK20,
BTMinerM66SVK30,
BTMinerM66SVK40,
)
from .M60 import BTMinerM60VK10, BTMinerM60VK20, BTMinerM60VK30, BTMinerM60VK40
from .M60S import BTMinerM60SVK10, BTMinerM60SVK20, BTMinerM60SVK30, BTMinerM60SVK40
from .M63 import BTMinerM63VK10, BTMinerM63VK20, BTMinerM63VK30
from .M63S import BTMinerM63SVK10, BTMinerM63SVK20, BTMinerM63SVK30
from .M66 import BTMinerM66VK20, BTMinerM66VK30
from .M66S import BTMinerM66SVK20, BTMinerM66SVK30, BTMinerM66SVK40

View File

@@ -17,4 +17,4 @@
from .M2X import *
from .M3X import *
from .M5X import *
from .M6X import *
from .M6X import *