Skip to content

Commit

Permalink
refactor: delete unnecesary commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
AdonaiDiazEsparza committed Oct 24, 2024
1 parent 2defd76 commit 8a666f0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 25 deletions.
Binary file modified Canbus_app/dist/canbus_app.fap
Binary file not shown.
Binary file modified Canbus_app/dist/debug/canbus_app_d.elf
Binary file not shown.
25 changes: 0 additions & 25 deletions Canbus_app/scenes/mainMenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,31 +42,6 @@ bool OpenLogFile(App* app) {
return true;
}

// Function to select log file
/*bool select_log_file(App* app) {
FuriString* predefined_filepath = furi_string_alloc_set_str(PATHLOGS);
FuriString* selected_filepath = furi_string_alloc();
DialogsFileBrowserOptions browser_options;
browser_options.base_path = PATHLOGS;
dialog_file_browser_set_basic_options(&browser_options, ".log", NULL);
if(!dialog_file_browser_show(
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
furi_string_free(selected_filepath);
furi_string_free(predefined_filepath);
return false;
};
furi_string_reset(app->data);
furi_string_cat_str(app->data, furi_string_get_cstr(selected_filepath));
furi_string_free(selected_filepath);
furi_string_free(predefined_filepath);
return true;
}*/

// This function works to reset the values in the sender Option
void reset_sender_values(void* context) {
App* app = context;
Expand Down

0 comments on commit 8a666f0

Please sign in to comment.