mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 01:40:14 +01:00
py/builtinhelp: Change signature of help text var from pointer to array.
As a pointer (const char *) it takes up an extra word of storage which is in RAM.
This commit is contained in:
@@ -27,6 +27,6 @@
|
||||
|
||||
#include "py/builtin.h"
|
||||
|
||||
const char *cc3200_help_text = "Welcome to MicroPython!\n"
|
||||
const char cc3200_help_text[] = "Welcome to MicroPython!\n"
|
||||
"For online help please visit http://micropython.org/help/.\n"
|
||||
"For further help on a specific object, type help(obj)\n";
|
||||
|
||||
Reference in New Issue
Block a user