Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug Menu: add time of compilation to timestamp build #2075

Merged
merged 2 commits into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Documentation/DebugMenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ I.e.:

**Additional scroll-able items appear in this order**:

### Date
### Timestamp

- This is a date of firmware compilation and it has the following format: `DD-MM-YY` (i.e., `01-07-23` means it has been built in July, 1st, 2023)
- This is a timestamp of firmware compilation and it has the following format: `YYYYMMDD HHMMSS` (i.e., `20230701 213456` means it has been built in July, 1st, 2023 at 9:34:56 pm)

### ID

Expand Down
2 changes: 1 addition & 1 deletion Translations/make_translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def get_constants() -> List[Tuple[str, str]]:

def get_debug_menu() -> List[str]:
return [
datetime.today().strftime("%Y-%m-%d"),
datetime.today().strftime("%Y%m%d %H%M%S"),
"ID ",
"ACC ",
"PWR ",
Expand Down
Loading