aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F1xx
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32F1xx')
-rw-r--r--testhal/STM32F1xx/IRQ_STORM/main.c12
-rw-r--r--testhal/STM32F1xx/IRQ_STORM/readme.txt8
2 files changed, 15 insertions, 5 deletions
diff --git a/testhal/STM32F1xx/IRQ_STORM/main.c b/testhal/STM32F1xx/IRQ_STORM/main.c
index 7dcc62d61..fd963553c 100644
--- a/testhal/STM32F1xx/IRQ_STORM/main.c
+++ b/testhal/STM32F1xx/IRQ_STORM/main.c
@@ -237,9 +237,11 @@ int main(void) {
println("***");
print("*** Kernel: ");
println(CH_KERNEL_VERSION);
-#ifdef __GNUC__
- print("*** GCC Version: ");
- println(__VERSION__);
+ print("*** Compiled: ");
+ println(__DATE__ " - " __TIME__);
+#ifdef CH_COMPILER_NAME
+ print("*** Compiler: ");
+ println(CH_COMPILER_NAME);
#endif
print("*** Architecture: ");
println(CH_ARCHITECTURE_NAME);
@@ -247,6 +249,10 @@ int main(void) {
print("*** Core Variant: ");
println(CH_CORE_VARIANT_NAME);
#endif
+#ifdef CH_PORT_INFO
+ print("*** Port Info: ");
+ println(CH_PORT_INFO);
+#endif
#ifdef PLATFORM_NAME
print("*** Platform: ");
println(PLATFORM_NAME);
diff --git a/testhal/STM32F1xx/IRQ_STORM/readme.txt b/testhal/STM32F1xx/IRQ_STORM/readme.txt
index d06bff965..94dfa4cd6 100644
--- a/testhal/STM32F1xx/IRQ_STORM/readme.txt
+++ b/testhal/STM32F1xx/IRQ_STORM/readme.txt
@@ -8,8 +8,12 @@ The demo runs on an Olimex STM32-P103 board.
** The Demo **
-The application demonstrates the use of the STM32 GPT, PAL and Serial drivers
-in order to implement a system stress demo.
+The application demonstrates the use of the STM32F1xx GPT, PAL and Serial
+drivers in order to implement a system stress demo.
+
+** Board Setup **
+
+None.
** Build Procedure **