diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-27 01:19:17 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-27 01:19:17 +0300 |
commit | 3659af97c5422299dc50e3ab609298175126ab3f (patch) | |
tree | efcacf50cbab00dffa383583d480c57986867c78 /stmhal/pyexec.c | |
parent | 16ac4962aeb1fd6707b0c48cf9215e84083ed0f3 (diff) | |
parent | fe81eea96789b1b0bfb7be2c86ccdaeb89c5971a (diff) | |
download | micropython-3659af97c5422299dc50e3ab609298175126ab3f.tar.gz micropython-3659af97c5422299dc50e3ab609298175126ab3f.zip |
Merge pull request #703 from iabdalkader/micro_names
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 45928427e1..6dfc007762 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 |