summaryrefslogtreecommitdiffstatshomepage
path: root/examples/embedding
Commit message (Collapse)AuthorAge
* examples/embedding: Use core-provided KeyboardInterrupt object.Damien George2017-06-07
|
* various: Spelling fixesVille Skyttä2017-05-29
|
* all: Move BYTES_PER_WORD definition from ports to py/mpconfig.hDamien George2017-04-01
| | | | | It can still be overwritten by a port in mpconfigport.h but for almost all cases one can use the provided default.
* all: Use full path name when including mp-readline/timeutils/netutils.Damien George2017-03-31
| | | | | | | This follows the pattern of how all other headers are now included, and makes it explicit where the header file comes from. This patch also removes -I options from Makefile's that specify the mp-readline/timeutils/ netutils directories, which are no longer needed.
* all/Makefile: Remove -ansi from GCC flags, its ignored anyway.Krzysztof Blazewicz2017-03-23
| | | | | | The -ansi flag is used for C dialect selection and it is equivalent to -std=c90. Because it goes right before -std=gnu99 it is ignored as for conflicting flags GCC always uses the last one.
* examples/embedding: Place lexer constructor within NLR handler block.Damien George2017-03-14
| | | | The lexer constructor may now raise an exception and it needs to be caught.
* examples/embedding/README: Convert to markdown, grammar and clarity fixes.Paul Sokolovsky2017-02-15
|
* py: Factor out persistent-code reader into separate files.Damien George2016-11-16
| | | | | | | Implementations of persistent-code reader are provided for POSIX systems and systems using FatFS. Macros to use these are MICROPY_READER_POSIX and MICROPY_READER_FATFS respectively. If an alternative implementation is needed then a port can define the function mp_reader_new_file.
* ports: Remove typedef of machine_ptr_t, it's no longer needed.Damien George2016-08-15
| | | | | | This type was used only for the typedef of mp_obj_t, which is now defined by the object representation. So we can now remove this unused typedef, to simplify the mpconfigport.h file.
* examples/embedding: Add README.Paul Sokolovsky2016-07-22
|
* examples/embedding: Example for embedding MicroPython in an app.Paul Sokolovsky2016-07-22