-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:rene-dev/stmbl
- Loading branch information
Showing
13 changed files
with
29 additions
and
18 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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#include "version.h" | ||
#include "version_number.h" | ||
|
||
volatile const version_info_t version_info __attribute__((section(".version_info"))) = { | ||
.product_name = "STMBL-Bootloader", | ||
.major = 0, | ||
.minor = 9, | ||
.patch = 15}; | ||
.major = VERSION_MAJOR, | ||
.minor = VERSION_MINOR, | ||
.patch = VERSION_PATCH}; |
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
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#include "version.h" | ||
#include "version_number.h" | ||
|
||
volatile const version_info_t version_info __attribute__((section(".version_info"))) = { | ||
.product_name = "STMBL-f3-boot", | ||
.major = 0, | ||
.minor = 9, | ||
.patch = 15}; | ||
.major = VERSION_MAJOR, | ||
.minor = VERSION_MINOR, | ||
.patch = VERSION_PATCH}; |
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#pragma once | ||
|
||
#define VERSION_MAJOR 0 | ||
#define VERSION_MINOR 9 | ||
#define VERSION_PATCH 17 |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#include "version.h" | ||
#include "version_number.h" | ||
|
||
volatile const version_info_t version_info __attribute__((section(".version_info"))) = { | ||
.product_name = "STMBL", | ||
.major = 0, | ||
.minor = 9, | ||
.patch = 15}; | ||
.major = VERSION_MAJOR, | ||
.minor = VERSION_MINOR, | ||
.patch = VERSION_PATCH}; |
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
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#include "version.h" | ||
#include "version_number.h" | ||
|
||
volatile const version_info_t version_info __attribute__((section(".version_info"))) = { | ||
.product_name = "STMBL-hv-f303", | ||
.major = 0, | ||
.minor = 9, | ||
.patch = 15}; | ||
.major = VERSION_MAJOR, | ||
.minor = VERSION_MINOR, | ||
.patch = VERSION_PATCH}; |
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