cheers but no difference, same error
edit: the only slight change I had to do was this cos the program wouldn't compile at first:
Edit the main.cpp line 1491 from
static inline uint32_t convertChipType(const char* chip) {
char buffer[5];
memset(buffer, 0, sizeof(buffer));
to
static inline uint32_t convertChipType(const char* chip) {
char buffer[558];
memset(buffer, 0, sizeof(buffer));
No more error.
https://github.com/rockchip-linux/rkdeveloptool/issues/55