From 09a6c7a0583e14d254e98957ae7980d2feaaed06 Mon Sep 17 00:00:00 2001 From: Till Rosenband Date: Tue, 27 Oct 2020 13:25:57 -0400 Subject: [PATCH] Remove build date to allow easy comparison of compiled binaries. --- terminal.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/terminal.c b/terminal.c index 50e173b8..e70eb2f9 100644 --- a/terminal.c +++ b/terminal.c @@ -1033,8 +1033,6 @@ void terminal_process_string(char *str) { commands_printf("Invalid arguments\n"); } } - } else if (strcmp(argv[0], "build_date") == 0) { - commands_printf("Build date and time: %s at %s\n", __DATE__, __TIME__); } else if (strcmp(argv[0], "crc") == 0) { unsigned mc_crc0 = mc_interface_get_configuration()->crc; unsigned mc_crc1 = mc_interface_calc_crc(NULL, false); @@ -1179,9 +1177,6 @@ void terminal_process_string(char *str) { commands_printf("io_board_set_output_pwm [id] [ch] [duty]"); commands_printf(" Set pwm output of IO board."); - commands_printf("build_date"); - commands_printf(" Print build date and time."); - commands_printf("crc"); commands_printf(" Print CRC values.");