summaryrefslogtreecommitdiffstatshomepage
path: root/teensy/modpyb.c
Commit message (Collapse)AuthorAge
* lib/pyexec: Move header pyexec.h from stmhal directory.Damien George2015-11-09
|
* all: Add py/mphal.h and use it in all ports.Damien George2015-10-31
| | | | | | py/mphal.h contains declarations for generic mp_hal_XXX functions, such as stdio and delay/ticks, which ports should provide definitions for. A port will also provide mphalport.h with further HAL declarations.
* teensy: Switch from HAL_* to mp_hal_* functions.Paul Sokolovsky2015-10-29
|
* py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky2015-10-11
|
* stmhal: Make pybstdio usable by other ports, and use it.Damien George2015-02-13
| | | | | Now all ports can use pybstdio.c to provide sys.stdin/stdout/stderr, so long as they implement mp_hal_stdin_* and mp_hal_stdout_* functions.
* teensy: Prefix includes with py/; remove need for -I../py.Damien George2015-01-01
|
* Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George2014-11-29
| | | | | This is just a clean-up of the code. Generated code is exactly the same.
* Added pyb.elapsed_millis and pyb.elapsed_microsDave Hylands2014-09-28
| | | | | | tested using: stmhal: https://github.com/dhylands/upy-examples/blob/master/elapsed.py teensy: https://github.com/dhylands/upy-examples/blob/master/teensy/elapsed.py
* Add Timer support (PWM, OC, IC) for stmhal and teensyDave Hylands2014-09-19
|
* Add save/restore_irqDave Hylands2014-08-25
| | | | Factored irq functions into a separate file.
* Fix teensy to work with the latest tree.Dave Hylands2014-08-02
|
* Fix teensy to build on latest tree.Dave Hylands2014-07-14
| | | | | Put #include of mpconfig.h before misc.h Replace uses of ARRAY_SIZE with MP_ARRAY_SIZE
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
| | | | See discussion in issue #50.
* Updated teensy to build.Dave Hylands2014-06-15
Refactored some stmhal files which are shared with teensy.