MCPcopy Create free account
hub / github.com/kiibohd/controller / cliFunc_cliDebug

Function cliFunc_cliDebug

Debug/cli/cli.c:557–572  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

555}
556
557void cliFunc_cliDebug( char* args )
558{
559 // Toggle Hex Debug Mode
560 if ( CLIHexDebugMode )
561 {
562 print( NL );
563 info_printNL("Hex debug mode disabled...");
564 CLIHexDebugMode = 0;
565 }
566 else
567 {
568 print( NL );
569 info_printNL("Hex debug mode enabled...");
570 CLIHexDebugMode = 1;
571 }
572}
573
574void cliFunc_colorTest( char* args )
575{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…