Git Product home page Git Product logo

Comments (2)

JoaoLopesF avatar JoaoLopesF commented on May 14, 2024

HI, I agree that, and I will work in one solution

from remotedebug.

JoaoLopesF avatar JoaoLopesF commented on May 14, 2024

Hi, I just upload a new version: 1.5.8 New macros to compatibility with SerialDebug (can use RemoteDebug or SerialDebug)
As SerialDebug is based in macros and RemoteDebug is based in C++ class, due this functionality,
not is possible 100% compatibility, I sugest that use #defines to use one or another library, example:

#define USE_REMOTEDEBUG true

and:

#ifdef USE_REMOTEDEBUG
// RemoteDebug

RemoteDebug Debug;
#endif

#ifdef USE_REMOTEDEBUG

// Initialize RemoteDebug

initializeRemoteDebug();

#else

// SerialDebug

#ifndef DEBUG_DISABLE_DEBUGGER

// Add Functions and global variables to SerialDebug

// Add functions that can called from SerialDebug

//debugAddFunctionVoid(F("function"), &function); // Example for function without args
//debugAddFunctionStr(F("function"), &function); // Example for function with one String arg
//debugAddFunctionInt(F("function"), &function); // Example for function with one int arg

// Add global variables that can showed/changed from SerialDebug
// Note: Only global, if pass local for SerialDebug, can be dangerous

debugAddGlobalUInt16_t("motorSpeed[0]", &mMotorControl.mMotorSpeed[0]);
debugAddGlobalBoolean("motorForward[0]", &mMotorControl.mMotorForward[0]);
debugAddGlobalUInt16_t("motorSpeed[1]", &mMotorControl.mMotorSpeed[1]);
debugAddGlobalBoolean("motorForward[1]", &mMotorControl.mMotorForward[1]);

#endif // DEBUG_DISABLE_DEBUGGER
#endif //USE_REMOTEDEBUG

from remotedebug.

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.