-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
* | ||
* \author Gabriel Mariano Marcelino <[email protected]> | ||
* | ||
* \version 0.1.10 | ||
* \version 0.3.0 | ||
* | ||
* \date 23/09/2016 | ||
* | ||
|
@@ -52,7 +52,7 @@ bool debug_init() | |
|
||
debug_print_splash_screen(); | ||
|
||
debug_print_msg("=========================================================\n\r"); | ||
debug_print_msg("=================================================================\n\r"); | ||
debug_print_msg("Version:\t"); | ||
debug_print_firmware_version(); | ||
debug_print_msg("\n\r"); | ||
|
@@ -66,7 +66,7 @@ bool debug_init() | |
debug_print_msg(" <"); | ||
debug_print_msg(FIRMWARE_AUTHOR_EMAIL); | ||
debug_print_msg(">\n\r"); | ||
debug_print_msg("=========================================================\n\r"); | ||
debug_print_msg("=================================================================\n\r"); | ||
debug_print_msg("\n\n\r"); | ||
|
||
return true; | ||
|
@@ -280,21 +280,21 @@ void debug_print_license_msg() | |
|
||
void debug_print_splash_screen() | ||
{ | ||
debug_print_msg(" \n\r"); | ||
debug_print_msg(" \n\r"); | ||
debug_print_msg(".........................................................\n\r"); | ||
debug_print_msg(".........................................................\n\r"); | ||
debug_print_msg("...... ......\n\r"); | ||
debug_print_msg("...... _____ ____ _ _____ _____ ____ ......\n\r"); | ||
debug_print_msg("...... | ___/ ___| __ _| |_ |_ _|_ _/ ___| ......\n\r"); | ||
debug_print_msg("...... | |_ \\___ \\ / _` | __|____| | | || | ......\n\r"); | ||
debug_print_msg("...... | _| ___) | (_| | ||_____| | | || |___ ......\n\r"); | ||
debug_print_msg("...... |_| |____/ \\__,_|\\__| |_| |_| \\____| ......\n\r"); | ||
debug_print_msg("...... ......\n\r"); | ||
debug_print_msg(".........................................................\n\r"); | ||
debug_print_msg(".........................................................\n\r"); | ||
debug_print_msg(" \n\r"); | ||
debug_print_msg(" \n\r"); | ||
debug_print_msg(" \n\r"); | ||
debug_print_msg(" \n\r"); | ||
debug_print_msg(".................................................................\n\r"); | ||
debug_print_msg(".................................................................\n\r"); | ||
debug_print_msg(".......... ..........\n\r"); | ||
debug_print_msg(".......... _____ ____ _ _____ _____ ____ ..........\n\r"); | ||
debug_print_msg(".......... | ___/ ___| __ _| |_ |_ _|_ _/ ___| ..........\n\r"); | ||
debug_print_msg(".......... | |_ \\___ \\ / _` | __|____| | | || | ..........\n\r"); | ||
debug_print_msg(".......... | _| ___) | (_| | ||_____| | | || |___ ..........\n\r"); | ||
debug_print_msg(".......... |_| |____/ \\__,_|\\__| |_| |_| \\____| ..........\n\r"); | ||
debug_print_msg(".......... ..........\n\r"); | ||
debug_print_msg(".................................................................\n\r"); | ||
debug_print_msg(".................................................................\n\r"); | ||
debug_print_msg(" \n\r"); | ||
debug_print_msg(" \n\r"); | ||
} | ||
|
||
void debug_print_firmware_version() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
* | ||
* \author Gabriel Mariano Marcelino <[email protected]> | ||
* | ||
* \version 0.2.16 | ||
* \version 0.3.0 | ||
* | ||
* \date 08/02/2019 | ||
* | ||
|
@@ -36,7 +36,7 @@ | |
#ifndef VERSION_H_ | ||
#define VERSION_H_ | ||
|
||
#define FIRMWARE_VERSION "0.2.16" | ||
#define FIRMWARE_VERSION "0.3.0" | ||
|
||
#define FIRMWARE_STATUS "Development" | ||
|
||
|