Code Monkey home page Code Monkey logo

harmonycart's People

Contributors

sa666666 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

harmonycart's Issues

CRC errors

Currently, a CRC error after downloading a chunk of data halts the download. With testing, CRC errors are not repeatable and typically, if the user tries the download several times, this results in a successful download. Occasionally a board needs hits CRC errors often and the user needs to do dozens of retries to get a successful download.

The software allows changing the retry count up to 3 I believe, but I think the default retry count should be much higher than it is, at least 10, and should allow the user to select higher values still. Hopefully this would result in a much higher probability of download success.

Occasionally, after a CRC error, the software will lock up. In some instances, the only way to get the software to respond again is to unplug the board and plug it back in.

Virtual COM ports above 256 not being detected in Windows

I have a device that comes up in Windows as COM257, and the software would not detect it.

The problem seems to be that only com ports 1-256 are being searched. See this function:

const StringList& SerialPortWin32::getPortNames()
{
myPortNames.clear();

for(int i = 1; i <= 256; ++i)
{
TCHAR strPort[32] = {0};
sprintf(strPort, "COM%d", i);

if(openPort(strPort))
{
  uInt8 c;
  int n = receiveBlock(&c, 1);
  if(n >= 0)
    myPortNames.push_back(strPort);
}
closePort();

}

In practice I have seen com ports above 1000, even back to Windows 2000. Maybe upping the limit to 1024 would help.

No 64-bit versions

The MacOS version of the software does not work in Catalina, since Apple went 64-bit only.

Maybe a new version of the software should be 64-bit across the board?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.