GithubHelp home page GithubHelp logo

Comments (5)

stonier avatar stonier commented on July 20, 2024

This is used liberally through the ycs. Should come up with a solution for it.

from ecl_core.

bit-pirate avatar bit-pirate commented on July 20, 2024

The two cases I found are related with data writes on a "ecl::Serialorftdi::Ftdi` instance and look like this:

ecl::Error PacketHandler::writeData(unsigned char *buff, unsigned long size_buff)
{
  ecl::Error error = ecl::NoError;
  if (device != NULL)
  {
    ecl_debug_try
    {
      if (device->write(buff, size_buff) == -1)
      {
        error = device->error(); // release mode and there is no exceptions, we land here.
      }
    }
    ecl_debug_catch (const ecl::StandardException &e){
      error = e.flag();
    }
  }
  else
  {
    error = ecl::NotInitialisedError;
  }
  return error;
}

I guess, it would be okay to just remove the exception handling until this gets properly fixed. Thoughts?

from ecl_core.

stonier avatar stonier commented on July 20, 2024

Sounds good to me - I still can't think of a way around this.

from ecl_core.

clalancette avatar clalancette commented on July 20, 2024

@stonier For what it is worth, I just built all of ecl stuff locally in Release mode, and everything seems to work here. So we might consider closing this very old bug.

from ecl_core.

stonier avatar stonier commented on July 20, 2024

Oh, that's interesting. I should leave bugs open more often, let the world fix my problems :)

from ecl_core.

Related Issues (20)

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.