diff options
author | mux <freelancer.c@gmail.com> | 2014-06-19 14:40:00 +0200 |
---|---|---|
committer | mux <freelancer.c@gmail.com> | 2014-06-19 14:40:57 +0200 |
commit | fe81eea96789b1b0bfb7be2c86ccdaeb89c5971a (patch) | |
tree | 7009a7e18b5aa89e2ba358637042c840e0a9a24a /stmhal/pyexec.c | |
parent | 2547928148aefcf163953057979e14f46bef1170 (diff) |
Add MICROPY_HW_MICRO_NAME to boards config
Diffstat (limited to 'stmhal/pyexec.c')
-rw-r--r-- | stmhal/pyexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pyexec.c b/stmhal/pyexec.c index 45928427e..6dfc00776 100644 --- a/stmhal/pyexec.c +++ b/stmhal/pyexec.c @@ -185,7 +185,7 @@ int pyexec_friendly_repl(void) { #endif friendly_repl_reset: - stdout_tx_str("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with STM32F405RG\r\n"); + stdout_tx_str("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MICRO_NAME "\r\n"); stdout_tx_str("Type \"help()\" for more information.\r\n"); // to test ctrl-C |