| 555 | } |
| 556 | |
| 557 | void 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 | |
| 574 | void cliFunc_colorTest( char* args ) |
| 575 | { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…