Remove build date to allow easy comparison of compiled binaries.

This commit is contained in:
Till Rosenband 2020-10-27 13:25:57 -04:00
parent c69032e882
commit 09a6c7a058
1 changed files with 0 additions and 5 deletions

View File

@ -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.");