Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
4210fd68
Verified
Commit
4210fd68
authored
5 years ago
by
rahix
Browse files
Options
Downloads
Patches
Plain Diff
WIP: Extend config
parent
ddf714ad
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ports/card10/mpconfigport.h
+31
-36
31 additions, 36 deletions
ports/card10/mpconfigport.h
with
31 additions
and
36 deletions
ports/card10/mpconfigport.h
+
31
−
36
View file @
4210fd68
...
...
@@ -19,45 +19,45 @@
#define MICROPY_COMP_DOUBLE_TUPLE_ASSIGN (0)
#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (0)
#define MICROPY_MEM_STATS (0)
#define MICROPY_DEBUG_PRINTERS (
0
)
#define MICROPY_DEBUG_PRINTERS (
1
)
#define MICROPY_ENABLE_GC (1)
#define MICROPY_GC_ALLOC_THRESHOLD (0)
// TODO What value do we want
#define MICROPY_REPL_EVENT_DRIVEN (1)
#define MICROPY_HELPER_REPL (1)
#define MICROPY_HELPER_LEXER_UNIX (0)
#define MICROPY_ENABLE_SOURCE_LINE (
0
)
#define MICROPY_ENABLE_DOC_STRING (
0
)
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_
TERSE
)
#define MICROPY_ENABLE_SOURCE_LINE (
1
)
#define MICROPY_ENABLE_DOC_STRING (
1
)
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_
DETAILED
)
#define MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG (0)
#define MICROPY_PY_ASYNC_AWAIT (0)
#define MICROPY_PY_BUILTINS_BYTEARRAY (
0
)
#define MICROPY_PY_BUILTINS_DICT_FROMKEYS (
0
)
#define MICROPY_PY_BUILTINS_MEMORYVIEW (
0
)
#define MICROPY_PY_BUILTINS_ENUMERATE (
0
)
#define MICROPY_PY_BUILTINS_FILTER (
0
)
#define MICROPY_PY_BUILTINS_FROZENSET (
0
)
#define MICROPY_PY_BUILTINS_REVERSED (
0
)
#define MICROPY_PY_BUILTINS_SET (
0
)
#define MICROPY_PY_BUILTINS_SLICE (
0
)
#define MICROPY_PY_BUILTINS_PROPERTY (
0
)
#define MICROPY_PY_BUILTINS_MIN_MAX (
0
)
#define MICROPY_PY_BUILTINS_STR_COUNT (
0
)
#define MICROPY_PY_BUILTINS_BYTEARRAY (
1
)
#define MICROPY_PY_BUILTINS_DICT_FROMKEYS (
1
)
#define MICROPY_PY_BUILTINS_MEMORYVIEW (
1
)
#define MICROPY_PY_BUILTINS_ENUMERATE (
1
)
#define MICROPY_PY_BUILTINS_FILTER (
1
)
#define MICROPY_PY_BUILTINS_FROZENSET (
1
)
#define MICROPY_PY_BUILTINS_REVERSED (
1
)
#define MICROPY_PY_BUILTINS_SET (
1
)
#define MICROPY_PY_BUILTINS_SLICE (
1
)
#define MICROPY_PY_BUILTINS_PROPERTY (
1
)
#define MICROPY_PY_BUILTINS_MIN_MAX (
1
)
#define MICROPY_PY_BUILTINS_STR_COUNT (
1
)
#define MICROPY_PY_BUILTINS_STR_OP_MODULO (0)
#define MICROPY_PY_BUILTINS_HELP (1)
#define MICROPY_PY_BUILTINS_HELP_MODULES (1)
#define MICROPY_PY___FILE__ (0)
#define MICROPY_PY_GC (0)
#define MICROPY_PY_ARRAY (
0
)
#define MICROPY_PY_ATTRTUPLE (
0
)
#define MICROPY_PY_COLLECTIONS (
0
)
#define MICROPY_PY_MATH (
0
)
#define MICROPY_PY_CMATH (
0
)
#define MICROPY_PY_IO (
0
)
#define MICROPY_PY_STRUCT (
0
)
#define MICROPY_PY_SYS (
0
)
#define MICROPY_PY_ARRAY (
1
)
#define MICROPY_PY_ATTRTUPLE (
1
)
#define MICROPY_PY_COLLECTIONS (
1
)
#define MICROPY_PY_MATH (
1
)
#define MICROPY_PY_CMATH (
1
)
#define MICROPY_PY_IO (
1
)
#define MICROPY_PY_STRUCT (
1
)
#define MICROPY_PY_SYS (
1
)
#define MICROPY_MODULE_FROZEN_MPY (0)
#define MICROPY_CPYTHON_COMPAT (0)
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_
N
ON
E
)
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_
NONE
)
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_
LONGL
ON
G
)
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_
FLOAT
)
// type definitions for the specific machine
...
...
@@ -83,16 +83,11 @@ typedef long mp_off_t;
// We need to provide a declaration/definition of alloca()
#include
<alloca.h>
#define MICROPY_HW_BOARD_NAME "minimal"
#define MICROPY_HW_MCU_NAME "unknown-cpu"
// TODO remove
#ifdef __thumb__
#define MICROPY_MIN_USE_CORTEX_CPU (1)
#define MICROPY_MIN_USE_STM32_MCU (1)
#endif
#define MICROPY_HW_BOARD_NAME "card10"
#define MICROPY_HW_MCU_NAME "max32665"
#define MP_STATE_PORT MP_STATE_VM
#define MICROPY_PORT_ROOT_POINTERS \
const char *readline_hist[8];
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment