-
Notifications
You must be signed in to change notification settings - Fork 0
/
FwVersion.cmake
23 lines (22 loc) · 924 Bytes
/
FwVersion.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Define the firmware version variables
set(FW_MAJOR_VERSION 0)
set(FW_MINOR_VERSION 0)
set(FW_MAINT_VERSION 2)
#[[/******************************************************************************
* Version Notes
******************************************************************************\
Version: 0.0.2-alpha
Date: Jan 30st, 2024
Details:
- Added debug log functionality.
- Added terminal text and background colors.
- Added terminal scrolling, and auto scroll when hitting a newline.
- Added PIT timer stub, and CPU clock cycle
- Added %d, %u modifiers for printf(), and added \n \0 support.
------------------------------------------------------------------------------
Version: 0.0.1-alpha
Date: Jan 16st, 2024
Details:
- Initial build
------------------------------------------------------------------------------
******************************************************************************/]]