| 712 | } |
| 713 | |
| 714 | void cliFunc_reload( char* args ) |
| 715 | { |
| 716 | if ( flashModeEnabled_define == 0 ) |
| 717 | { |
| 718 | print( NL ); |
| 719 | warn_printNL("flashModeEnabled not set, cancelling firmware reload..."); |
| 720 | info_print("Set flashModeEnabled to 1 in your kll configuration."); |
| 721 | return; |
| 722 | } |
| 723 | |
| 724 | // Request to output module to be set into firmware reload mode |
| 725 | Output_firmwareReload(); |
| 726 | } |
| 727 | |
| 728 | void cliFunc_reset( char* args ) |
| 729 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…