Ver código fonte

display some hints on repl start

Oliver Fabel 1 ano atrás
pai
commit
a012ce9f56
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      upython_repl.c

+ 2 - 0
upython_repl.c

@@ -252,6 +252,8 @@ void upython_repl_execute(Cli* cli) {
 
 
     printf("MicroPython (%s, %s) on Flipper Zero\r\n", MICROPY_GIT_TAG, MICROPY_BUILD_DATE);
     printf("MicroPython (%s, %s) on Flipper Zero\r\n", MICROPY_GIT_TAG, MICROPY_BUILD_DATE);
     printf("Quit: Ctrl+D | Heap: %zu bytes | Stack: %zu bytes\r\n", heap_size, stack_size);
     printf("Quit: Ctrl+D | Heap: %zu bytes | Stack: %zu bytes\r\n", heap_size, stack_size);
+    printf("      To do a reboot, press Left+Back for 5 seconds.\r\n");
+    printf("Docs: https://ofabel.github.io/mp-flipper\r\n");
 
 
     mp_flipper_repl_context_t* context = mp_flipper_repl_context_alloc();
     mp_flipper_repl_context_t* context = mp_flipper_repl_context_alloc();