| Age | Commit message (Collapse) | Author |
|
|
|
|
|
Pass a single parameter (doesn't matter what): pyb.info(1), will dump
the GC alloc table.
|
|
Towards addressing issue #424.
Had a small increase to ROM usage (order 60 bytes).
|
|
Pretty much everyone needs to include map.h, since it's such an integral
part of the Micro Python object implementation. Thus, the definitions
are now in obj.h instead. map.h is removed.
|
|
Can now choose at boot up whether the USB device is CDC+MSC or CDC+HID.
Choice is made by an option in boot.py, with default being CDC+MSC.
HID+MSC is not currently supported, but should be easy to implement.
Boot up now has ability to change the reset mode: hold down USR switch
while booting and LEDs will count from 1 to 7 to indicate the boot mode.
Release USR when correct mode is selected. Current modes are 1 (normal
boot), 2 (safe mode), 3 (reset FS mode).
|
|
The HID device must appear before the CDC in order for both to work at
the same time.
Whilst the code is working, it's not currently used.
|
|
Adds readline_init() to clear readline history on soft reset. Addresses
issue #387.
|
|
|
|
|
|
|
|
Comes with some refactoring of code and renaming of files. All modules
are now named mod*.[ch].
|