This commit is contained in:
sunsets
2024-01-09 09:19:16 +08:00
parent bfff15eb8e
commit cad0b137b4
31 changed files with 52 additions and 53 deletions

View File

@@ -1,4 +1,4 @@
THIS IS A PRUSA3D BRANCH, WORKING AROUND A SPECIFIC PROBLEM
THIS IS A QIDI3D BRANCH, WORKING AROUND A SPECIFIC PROBLEM
IN THE EARLY I3 MK2 USB COMMUNICATION CHIPS.
Some of the early QIDI3D i3 MK2 printers were shipped with a buggy
@@ -12,7 +12,7 @@ https://github.com/arduino/Arduino-stk500v2-bootloader
The avrdude binary modified by QIDI3D could replace the avrdude bianary
of arduino to program the RAMBo board. In that case the modified binary
is identified by a "-prusa3d" suffix to the version information.
is identified by a "-qidi3d" suffix to the version information.
-------------------------------------------------------------------

View File

@@ -4808,7 +4808,7 @@ void stk500v2_jtag3_initpgm(PROGRAMMER * pgm)
void stk500v2_set_upload_size(PROGRAMMER * pgm, int size)
{
unsigned char buf[16];
buf[0] = CMD_SET_UPLOAD_SIZE_PRUSA3D;
buf[0] = CMD_SET_UPLOAD_SIZE_QIDI3D;
buf[1] = size & 0xff;
buf[2] = size >> 8;
buf[3] = size >> 16;

View File

@@ -93,7 +93,7 @@
// *****************[ STK QIDI3D specific command constants ]*****************
#define CMD_SET_UPLOAD_SIZE_PRUSA3D 0x71
#define CMD_SET_UPLOAD_SIZE_QIDI3D 0x71
// *** AVR32 JTAG Programming command ***