You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a desire for high-level debug features in embedded systems beyond the logging provided by cib. These debug features are focused on application logic and not low-level C++ or machine code debug.
Command handler with command declaration API
Declare commands:
name
summary
arguments
name
summary
type
default
response
type
constexprauto my_cmd =
dbg::command(
"my_cmd"_sc,
"Example for how to define a simple command."_sc,
dbg::args(
dbg::arg("arg1"_sc, "Just an optional arg."_sc, int, 0)
),
void,
[](auto args){
auto arg1 = args.get("arg1"_f);
}
);
Built in commands for message handlers
Spoof message. Automatically generate commands to spoof all the message types that message handlers have callbacks for.
Utilities for declaring and decoding high-level state information
There is a desire for high-level debug features in embedded systems beyond the logging provided by cib. These debug features are focused on application logic and not low-level C++ or machine code debug.
Command handler with command declaration API
Declare commands:
Built in commands for message handlers
Utilities for declaring and decoding high-level state information
Python module for interacting with live target or snapshot with nice user interface
Extract command declarations and provide both an API and interactive UI to send and receive commands from a live target.
Interfaces:
Python module will need support for how to represent the values of types with an extensible interface for adding more:
The text was updated successfully, but these errors were encountered: