mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Revert "CS-171 Add R2 support"
This commit is contained in:
parent
7ff7ab53bf
commit
82aa0492ea
9 changed files with 10 additions and 33 deletions
|
@ -75,4 +75,4 @@ class FirmwareUpdateState(IntEnum):
|
||||||
communication_error = 4
|
communication_error = 4
|
||||||
io_error = 5
|
io_error = 5
|
||||||
firmware_not_found_error = 6
|
firmware_not_found_error = 6
|
||||||
invalid_firmware_error = 7
|
|
||||||
|
|
|
@ -151,8 +151,6 @@ Cura.MachineAction
|
||||||
return catalog.i18nc("@label","Firmware update failed due to an input/output error.");
|
return catalog.i18nc("@label","Firmware update failed due to an input/output error.");
|
||||||
case 6:
|
case 6:
|
||||||
return catalog.i18nc("@label","Firmware update failed due to missing firmware.");
|
return catalog.i18nc("@label","Firmware update failed due to missing firmware.");
|
||||||
case 7:
|
|
||||||
return catalog.i18nc("@label","Firmware update failed due to invalid firmware file.");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -135,13 +135,10 @@ class LocalClusterOutputDeviceManager:
|
||||||
ultimaker_machines = container_registry.findContainersMetadata(type="machine", manufacturer="Ultimaker B.V.")
|
ultimaker_machines = container_registry.findContainersMetadata(type="machine", manufacturer="Ultimaker B.V.")
|
||||||
found_machine_type_identifiers = {} # type: Dict[str, str]
|
found_machine_type_identifiers = {} # type: Dict[str, str]
|
||||||
for machine in ultimaker_machines:
|
for machine in ultimaker_machines:
|
||||||
|
machine_bom_number = machine.get("firmware_update_info", {}).get("id", None)
|
||||||
machine_type = machine.get("id", None)
|
machine_type = machine.get("id", None)
|
||||||
machine_bom_numbers = machine.get("bom_numbers", [])
|
if machine_bom_number and machine_type:
|
||||||
if machine_type and machine_bom_numbers:
|
found_machine_type_identifiers[str(machine_bom_number)] = machine_type
|
||||||
for bom_number in machine_bom_numbers:
|
|
||||||
# This produces a n:1 mapping of bom numbers to machine types
|
|
||||||
# allowing the S5R1 and S5R2 hardware to use a single S5 definition.
|
|
||||||
found_machine_type_identifiers[str(bom_number)] = machine_type
|
|
||||||
return found_machine_type_identifiers
|
return found_machine_type_identifiers
|
||||||
|
|
||||||
## Add a new device.
|
## Add a new device.
|
||||||
|
|
|
@ -27,9 +27,6 @@ class AvrFirmwareUpdater(FirmwareUpdater):
|
||||||
except (FileNotFoundError, AssertionError):
|
except (FileNotFoundError, AssertionError):
|
||||||
Logger.log("e", "Unable to read provided hex file. Could not update firmware.")
|
Logger.log("e", "Unable to read provided hex file. Could not update firmware.")
|
||||||
self._setFirmwareUpdateState(FirmwareUpdateState.firmware_not_found_error)
|
self._setFirmwareUpdateState(FirmwareUpdateState.firmware_not_found_error)
|
||||||
except Exception:
|
|
||||||
Logger.logException("e", "Failed to read hex file '%s'", self._firmware_file)
|
|
||||||
self._setFirmwareUpdateState(FirmwareUpdateState.invalid_firmware_error)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
programmer = stk500v2.Stk500v2()
|
programmer = stk500v2.Stk500v2()
|
||||||
|
|
|
@ -5,16 +5,13 @@ See: http://en.wikipedia.org/wiki/Intel_HEX
|
||||||
This is a python 3 conversion of the code created by David Braam for the Cura project.
|
This is a python 3 conversion of the code created by David Braam for the Cura project.
|
||||||
"""
|
"""
|
||||||
import io
|
import io
|
||||||
from typing import List
|
|
||||||
|
|
||||||
from UM.Logger import Logger
|
from UM.Logger import Logger
|
||||||
|
|
||||||
|
def readHex(filename):
|
||||||
def readHex(filename: str) -> List[int]:
|
|
||||||
"""
|
"""
|
||||||
Read an verify an intel hex file. Return the data as an list of bytes.
|
Read an verify an intel hex file. Return the data as an list of bytes.
|
||||||
"""
|
"""
|
||||||
data = [] # type: List[int]
|
data = []
|
||||||
extra_addr = 0
|
extra_addr = 0
|
||||||
f = io.open(filename, "r", encoding = "utf-8")
|
f = io.open(filename, "r", encoding = "utf-8")
|
||||||
for line in f:
|
for line in f:
|
||||||
|
|
|
@ -33,10 +33,7 @@
|
||||||
"https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version"
|
"https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version"
|
||||||
],
|
],
|
||||||
"update_url": "https://ultimaker.com/firmware"
|
"update_url": "https://ultimaker.com/firmware"
|
||||||
},
|
}
|
||||||
"bom_numbers": [
|
|
||||||
9066
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -30,10 +30,7 @@
|
||||||
"https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version"
|
"https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version"
|
||||||
],
|
],
|
||||||
"update_url": "https://ultimaker.com/firmware"
|
"update_url": "https://ultimaker.com/firmware"
|
||||||
},
|
}
|
||||||
"bom_numbers": [
|
|
||||||
9511
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"overrides": {
|
"overrides": {
|
||||||
|
|
|
@ -34,10 +34,7 @@
|
||||||
"id": 213482,
|
"id": 213482,
|
||||||
"check_urls": ["https://software.ultimaker.com/releases/firmware/213482/stable/um-update.swu.version"],
|
"check_urls": ["https://software.ultimaker.com/releases/firmware/213482/stable/um-update.swu.version"],
|
||||||
"update_url": "https://ultimaker.com/firmware"
|
"update_url": "https://ultimaker.com/firmware"
|
||||||
},
|
}
|
||||||
"bom_numbers": [
|
|
||||||
213482
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"overrides": {
|
"overrides": {
|
||||||
|
|
|
@ -35,10 +35,7 @@
|
||||||
"id": 9051,
|
"id": 9051,
|
||||||
"check_urls": ["https://software.ultimaker.com/releases/firmware/9051/stable/um-update.swu.version"],
|
"check_urls": ["https://software.ultimaker.com/releases/firmware/9051/stable/um-update.swu.version"],
|
||||||
"update_url": "https://ultimaker.com/firmware"
|
"update_url": "https://ultimaker.com/firmware"
|
||||||
},
|
}
|
||||||
"bom_numbers": [
|
|
||||||
9051, 214475
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"overrides": {
|
"overrides": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue