Dave Hylands
90928f1194
Fix build for netduino and stm32f4disc
11 years ago
Damien George
402dc31aa7
stm: Factor out GPIO code to its own file. Add functions to set GPIO mode.
GPIO functions are crude, and need to be replaced with better ones!
11 years ago
Paul Sokolovsky
c839584222
Update README to current state of affairs.
1. Invite x86 (32-bit) users.
2. Update interpreter name.
3. Update dependency install instructions.
11 years ago
Damien George
2abbae3419
stm: Rename mma -> accel.
11 years ago
Damien George
754a8dd827
stm: Put REPL functions in own file; add raw REPL mode.
Raw REPL mode is activated by CTRL-A, and allows you to more easily
communicate with the pyboard over the serial channel. In particular,
automated communication using, eg, pyserial on the PC side.
11 years ago
Damien George
e4758ad2e2
Merge pull request #301 from pfalcon/full-kwargs
Support passing positional args as keywords to bytecode functions.
11 years ago
Paul Sokolovsky
ac2e28c654
Support passing positional args as keywords to bytecode functions.
For this, record argument names along with each bytecode function. The code
still includes extensive debug logging support so far.
11 years ago
Paul Sokolovsky
44739e280e
Make DEBUG_printf() a proper function, implementation is port-dependent.
In particular, unix outputs to stderr, to allow to run testsuite against
micropython built with debug output (by redirecting stderr to /dev/null).
11 years ago
Paul Sokolovsky
1b694c082e
Rename fun-kwargs.py -> fun-kwvarargs.py to free up slot for simple kw test.
11 years ago
Damien George
8bb11171da
stm: Only define __packed if not already defined.
Addresses issue #299 .
11 years ago
Paul Sokolovsky
5fd7bc3264
Propagate scope flags refactor to emitcpy.c.
11 years ago
Paul Sokolovsky
91ba7a54c5
builtinimport: Get the basic (and only basic) package imports work.
11 years ago
Paul Sokolovsky
d3783570a4
builtinimport.c: Recognize "namespace package" and error out as unsupported.
See http://www.python.org/dev/peps/pep-0420/#specification for spec. See
https://github.com/micropython/micropython/issues/298 for the discussion
of the implemented behavior.
11 years ago
Damien George
e5d371b545
py: Pass keyword arguments to byte code.
11 years ago
Damien George
2e482cdb7b
py: Implement *vargs support.
Addresses issue #295 .
11 years ago
Damien George
96056a6272
py: Revent some long int configuration.
11 years ago
Damien George
91f2dbf64c
Merge branch 'master' of github.com:micropython/micropython
11 years ago
Damien George
c8f78bc280
py: VM never throws an exception, instead returns a status and value.
Addresses issue #290 , and hopefully sets up things to allow generators
throwing exceptions, etc.
11 years ago
Paul Sokolovsky
ff4678c5b4
objexcept: Fix thinko with args to mp_obj_new_list().
First arg is not alloc size, but real size, so if used as
mp_obj_new_list(3, NULL), need to store items, not append.
11 years ago
Damien George
36109d246f
Small change to configuration of long int.
11 years ago
Damien George
22a0865d54
py: Improve exception bases, reduces ROM usage.
Thanks to @pfalcon for the tip!
11 years ago
Damien George
8725f8f7de
py: Pass all scope flags through to runtime.
11 years ago
Damien George
c5966128c7
Implement proper exception type hierarchy.
Each built-in exception is now a type, with base type BaseException.
C exceptions are created by passing a pointer to the exception type to
make an instance of. When raising an exception from the VM, an
instance is created automatically if an exception type is raised (as
opposed to an exception instance).
Exception matching (RT_BINARY_OP_EXCEPTION_MATCH) is now proper.
Handling of parse error changed to match new exceptions.
mp_const_type renamed to mp_type_type for consistency.
11 years ago
Damien George
a71c83a1d1
Change mp_obj_type_t.name from const char * to qstr.
Ultimately all static strings should be qstr. This entry in the type
structure is only used for printing error messages (to tell the type of
the bad argument), and printing objects that don't supply a .print method.
11 years ago
Paul Sokolovsky
8ac72b9d00
Add testcase for failing namespace switch throwing exception from a module.
Issue #290 . This currently fails, to draw attention to the issue.
11 years ago
Damien George
9307ef46ca
Merge pull request #291 from GordonMcGregor/osx_build
OS X compatible -map syntax for LDFLAGS
11 years ago
Damien George
aa9b74fead
py: Fix IMPORT_STAR, needs to pop the stack.
11 years ago
Damien George
7ef098000a
Merge pull request #288 from pfalcon/port-builtins
Allow ports to define statically builtin functions.
11 years ago
Damien George
25735ba6d3
Merge pull request #282 from pfalcon/from-star
Implement "from mod import *"
11 years ago
Gordon McGregor
3890ec48e7
OS X compatible -map syntax for LDFLAGS
11 years ago
Paul Sokolovsky
76f8cedb52
mp_binary_get_val(): Fix value type.
11 years ago
Paul Sokolovsky
60a0d3f1db
objexcept: Fix a case of initialized object field.
11 years ago
Paul Sokolovsky
c203324e6c
objarray: Refactor to use array accessors from binary.c .
11 years ago
Paul Sokolovsky
8bc3516389
ffi: Implement ffivar.get()/set() methods.
Done by introducing another factored out helper API in binary.c. This API
can be reused also by array and struct modules.
11 years ago
Paul Sokolovsky
910843e86d
Allow ports to define statically builtin functions.
Convert unix open() to such.
11 years ago
Damien George
70d7a83c74
stm: If SD card inserted on hard reset, it is the medium for USB MSD.
11 years ago
Paul Sokolovsky
e7299b5296
Add testcase for "from module import *".
11 years ago
Paul Sokolovsky
b2e8c52298
Add testcase for "from module import sym".
11 years ago
Paul Sokolovsky
da1ce93da8
Implement "from module import *" construct.
11 years ago
Damien George
a8d404e0e1
Merge branch 'master' of github.com:micropython/micropython
11 years ago
Damien George
099a9cb575
Remove mp_obj_new_exception_msg_1_arg and _2_arg.
11 years ago
Paul Sokolovsky
2aa217b974
Implement full arg handling for exec().
11 years ago
Damien George
780ba22bb8
stm: Copy COPT style from unix port.
11 years ago
Damien George
648d9e6447
Merge pull request #279 from pfalcon/make-copt
unix Makefile: Split off optimization options to COPT variable.
11 years ago
Paul Sokolovsky
5be1b2873b
unix Makefile: Split off optimization options to COPT variable.
To allow easily try different optimization and configuration options
without patching any files.
11 years ago
Paul Sokolovsky
520e2f58a5
Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.
11 years ago
Paul Sokolovsky
d5df6cd44a
Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.
Some tools do not support local/static symbols (one example is GNU ld map file).
Exposing all functions will allow to do detailed size comparisons, etc.
Also, added bunch of statics where they were missing, and replaced few identity
functions with global mp_identity().
11 years ago
Damien George
1d1e38d911
Merge branch 'master' of github.com:micropython/micropython
11 years ago
Damien George
9d324b0ac7
stm: Add specific UINT_FMT and INT_FMT.
For some reason, STM port, while it's 32 bit, needs %lu and %ld for
printing machine_uint_t and machine_int_t.
11 years ago
Paul Sokolovsky
550d804d95
Add prototype for gc_dump_info().
11 years ago