Module Name: othersrc Committed By: agc Date: Thu Jan 14 01:38:53 UTC 2016
Update of /cvsroot/othersrc/external/mit/micropython In directory ivanova.netbsd.org:/tmp/cvs-serv18307 Log Message: Import micropython version 1.5.2 into othersrc. Micropython is a python3 implementation that has been optimised for micro-controllers and small embedded systems. It also has a "unix" port. It has an MIT license. This is version 1.5.2 of micropython. MicroPython implements the entire Python 3.4 syntax (including exceptions, "with", "yield from", etc.). The following core datatypes are provided: str (including basic Unicode support), bytes, bytearray, tuple, list, dict, set, frozenset, array.array, collections.namedtuple, classes and instances. Builtin modules include sys, time, and struct. Note that only subset of Python 3.4 functionality implemented for the data types and modules. This is the standard micropython source (version v1.5.2), which has been adapted to use reachover infrastructure. At the present time, libffi (from pkgsrc) is used. Alternative locations for libffi can be set using the PKGSRC_PREFIX definition to make. In the whole scheme of things, micropython is quite small: % size bin/micropython text data bss dec hex filename 393495 1624 2208 397327 6100f bin/micropython % and runs much as expected: % bin/micropython MicroPython v1.5.2 on 2016-01-13; linux version Use Ctrl-D to exit, Ctrl-E for paste mode >>> print("hello world") hello world >>> list(5 * x + y for x in range(10) for y in [4, 2, 1]) [4, 2, 1, 9, 7, 6, 14, 12, 11, 19, 17, 16, 24, 22, 21, 29, 27, 26, 34, 32, 31, 39, 37, 36, 44, 42, 41, 49, 47, 46] >>> % python2.7 Python 2.7.10 (default, Oct 17 2015, 17:55:29) [GCC 4.8.5] on netbsd7 Type "help", "copyright", "credits" or "license" for more information. >>> print("hello world") hello world >>> list(5 * x + y for x in range(10) for y in [4, 2, 1]) [4, 2, 1, 9, 7, 6, 14, 12, 11, 19, 17, 16, 24, 22, 21, 29, 27, 26, 34, 32, 31, 39, 37, 36, 44, 42, 41, 49, 47, 46] >>> ^D % This (reachover) version runs all the tests which the gmake version does. % make t cd bin && make t cd /home/agc/local/micropython/bin/../dist/unix/../tests && env MICROPY_MICROPYTHON=/home/agc/local/micropython/bin/micropython ./run-tests pass basics/0prelim.py pass basics/andor.py pass basics/array1.py pass basics/array_add.py pass basics/array_construct.py pass basics/array_construct2.py ... pass unix/ffi_callback.py pass unix/ffi_float.py pass unix/ffi_float2.py 474 tests performed (15812 individual testcases) 474 tests passed 5 tests skipped: cmd_showbc cmd_verbose machine1 machine_mem extra_coverage % The sources are available from github: https://github.com/micropython/micropython micropython release at: https://github.com/micropython/micropython/releases Sources for 1.5.2 taken from: https://github.com/micropython/micropython/archive/v1.5.2.tar.gz Alistair Crooks a...@netbsd.org Wed Jan 13 17:15:30 PST 2016 Status: Vendor Tag: MICROPYTHON Release Tags: micropython-1-5-2-base N othersrc/external/mit/micropython/README N othersrc/external/mit/micropython/Makefile N othersrc/external/mit/micropython/bin/_frozen_upip.c N othersrc/external/mit/micropython/bin/mpversion.h N othersrc/external/mit/micropython/bin/Makefile N othersrc/external/mit/micropython/bin/qstrdefs.preprocessed.h N othersrc/external/mit/micropython/bin/qstrdefs.generated.h N othersrc/external/mit/micropython/bin/emitnative.c N othersrc/external/mit/micropython/dist/CODECONVENTIONS.md N othersrc/external/mit/micropython/dist/.gitattributes N othersrc/external/mit/micropython/dist/.gitignore N othersrc/external/mit/micropython/dist/.gitmodules N othersrc/external/mit/micropython/dist/.travis.yml N othersrc/external/mit/micropython/dist/ACKNOWLEDGEMENTS N othersrc/external/mit/micropython/dist/CONTRIBUTING.md N othersrc/external/mit/micropython/dist/LICENSE N othersrc/external/mit/micropython/dist/README.md N othersrc/external/mit/micropython/dist/bare-arm/mpconfigport.h N othersrc/external/mit/micropython/dist/bare-arm/Makefile N othersrc/external/mit/micropython/dist/bare-arm/main.c N othersrc/external/mit/micropython/dist/bare-arm/qstrdefsport.h N othersrc/external/mit/micropython/dist/bare-arm/mphalport.h N othersrc/external/mit/micropython/dist/bare-arm/stm32f405.ld N othersrc/external/mit/micropython/dist/lib/README.md N othersrc/external/mit/micropython/dist/lib/fatfs/00readme.txt N othersrc/external/mit/micropython/dist/lib/fatfs/diskio.c N othersrc/external/mit/micropython/dist/lib/fatfs/diskio.h N othersrc/external/mit/micropython/dist/lib/fatfs/ff.c N othersrc/external/mit/micropython/dist/lib/fatfs/ff.h N othersrc/external/mit/micropython/dist/lib/fatfs/ffconf.h N othersrc/external/mit/micropython/dist/lib/fatfs/history.txt N othersrc/external/mit/micropython/dist/lib/fatfs/integer.h N othersrc/external/mit/micropython/dist/lib/fatfs/option/syscall.c N othersrc/external/mit/micropython/dist/lib/fatfs/option/cc932.c N othersrc/external/mit/micropython/dist/lib/fatfs/option/cc936.c N othersrc/external/mit/micropython/dist/lib/fatfs/option/cc949.c N othersrc/external/mit/micropython/dist/lib/fatfs/option/cc950.c N othersrc/external/mit/micropython/dist/lib/fatfs/option/ccsbcs.c N othersrc/external/mit/micropython/dist/lib/fatfs/option/unicode.c N othersrc/external/mit/micropython/dist/lib/libc/string0.c N othersrc/external/mit/micropython/dist/lib/libm/ef_rem_pio2.c N othersrc/external/mit/micropython/dist/lib/libm/asinfacosf.c N othersrc/external/mit/micropython/dist/lib/libm/acoshf.c N othersrc/external/mit/micropython/dist/lib/libm/kf_rem_pio2.c N othersrc/external/mit/micropython/dist/lib/libm/asinhf.c N othersrc/external/mit/micropython/dist/lib/libm/atan2f.c N othersrc/external/mit/micropython/dist/lib/libm/atanf.c N othersrc/external/mit/micropython/dist/lib/libm/atanhf.c N othersrc/external/mit/micropython/dist/lib/libm/ef_sqrt.c N othersrc/external/mit/micropython/dist/lib/libm/erf_lgamma.c N othersrc/external/mit/micropython/dist/lib/libm/fdlibm.h N othersrc/external/mit/micropython/dist/lib/libm/fmodf.c N othersrc/external/mit/micropython/dist/lib/libm/kf_cos.c N othersrc/external/mit/micropython/dist/lib/libm/sf_frexp.c N othersrc/external/mit/micropython/dist/lib/libm/kf_sin.c N othersrc/external/mit/micropython/dist/lib/libm/kf_tan.c N othersrc/external/mit/micropython/dist/lib/libm/libm.h N othersrc/external/mit/micropython/dist/lib/libm/log1pf.c N othersrc/external/mit/micropython/dist/lib/libm/math.c N othersrc/external/mit/micropython/dist/lib/libm/roundf.c N othersrc/external/mit/micropython/dist/lib/libm/sf_cos.c N othersrc/external/mit/micropython/dist/lib/libm/sf_erf.c N othersrc/external/mit/micropython/dist/lib/libm/sf_ldexp.c N othersrc/external/mit/micropython/dist/lib/libm/sf_modf.c N othersrc/external/mit/micropython/dist/lib/libm/sf_sin.c N othersrc/external/mit/micropython/dist/lib/libm/sf_tan.c N othersrc/external/mit/micropython/dist/lib/libm/wf_lgamma.c N othersrc/external/mit/micropython/dist/lib/libm/wf_tgamma.c N othersrc/external/mit/micropython/dist/lib/memzip/lexermemzip.c N othersrc/external/mit/micropython/dist/lib/memzip/README.md N othersrc/external/mit/micropython/dist/lib/memzip/import.c N othersrc/external/mit/micropython/dist/lib/memzip/make-memzip.py N othersrc/external/mit/micropython/dist/lib/memzip/memzip.c N othersrc/external/mit/micropython/dist/lib/memzip/memzip.h N othersrc/external/mit/micropython/dist/lib/mp-readline/readline.c N othersrc/external/mit/micropython/dist/lib/mp-readline/readline.h N othersrc/external/mit/micropython/dist/lib/netutils/netutils.c N othersrc/external/mit/micropython/dist/lib/netutils/netutils.h N othersrc/external/mit/micropython/dist/lib/timeutils/timeutils.c N othersrc/external/mit/micropython/dist/lib/timeutils/timeutils.h N othersrc/external/mit/micropython/dist/lib/utils/printf.c N othersrc/external/mit/micropython/dist/lib/utils/pyexec.c N othersrc/external/mit/micropython/dist/lib/utils/pyexec.h N othersrc/external/mit/micropython/dist/cc3200/README.md N othersrc/external/mit/micropython/dist/cc3200/Makefile N othersrc/external/mit/micropython/dist/cc3200/application.lds N othersrc/external/mit/micropython/dist/cc3200/application.mk N othersrc/external/mit/micropython/dist/cc3200/appsign.sh N othersrc/external/mit/micropython/dist/cc3200/main.c N othersrc/external/mit/micropython/dist/cc3200/mpconfigport.h N othersrc/external/mit/micropython/dist/cc3200/mptask.c N othersrc/external/mit/micropython/dist/cc3200/mptask.h N othersrc/external/mit/micropython/dist/cc3200/qstrdefsport.h N othersrc/external/mit/micropython/dist/cc3200/serverstask.c N othersrc/external/mit/micropython/dist/cc3200/serverstask.h N othersrc/external/mit/micropython/dist/cc3200/version.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/FreeRTOSConfig.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/License/license.txt N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/list.c N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/event_groups.c N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/croutine.c N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/queue.c N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/tasks.c N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/timers.c N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/StackMacros.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/FreeRTOS.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/event_groups.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/croutine.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/mpu_wrappers.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/list.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/portable.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/projdefs.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/queue.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/semphr.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/task.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/include/timers.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/portable/GCC/ARM_CM3/portmacro.h N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/portable/GCC/ARM_CM3/port.c N othersrc/external/mit/micropython/dist/cc3200/FreeRTOS/Source/portable/MemMang/heap_4.c N othersrc/external/mit/micropython/dist/cc3200/boards/cc3200_af.csv N othersrc/external/mit/micropython/dist/cc3200/boards/cc3200_prefix.c N othersrc/external/mit/micropython/dist/cc3200/boards/make-pins.py N othersrc/external/mit/micropython/dist/cc3200/boards/LAUNCHXL/mpconfigboard.h N othersrc/external/mit/micropython/dist/cc3200/boards/LAUNCHXL/pins.csv N othersrc/external/mit/micropython/dist/cc3200/boards/WIPY/mpconfigboard.h N othersrc/external/mit/micropython/dist/cc3200/boards/WIPY/pins.csv N othersrc/external/mit/micropython/dist/cc3200/ftp/updater.c N othersrc/external/mit/micropython/dist/cc3200/ftp/ftp.c N othersrc/external/mit/micropython/dist/cc3200/ftp/ftp.h N othersrc/external/mit/micropython/dist/cc3200/ftp/updater.h N othersrc/external/mit/micropython/dist/cc3200/bootmgr/bootloader.mk N othersrc/external/mit/micropython/dist/cc3200/bootmgr/bootgen.sh N othersrc/external/mit/micropython/dist/cc3200/bootmgr/bootmgr.h N othersrc/external/mit/micropython/dist/cc3200/bootmgr/bootmgr.lds N othersrc/external/mit/micropython/dist/cc3200/bootmgr/flc.h N othersrc/external/mit/micropython/dist/cc3200/bootmgr/main.c N othersrc/external/mit/micropython/dist/cc3200/bootmgr/runapp.s N othersrc/external/mit/micropython/dist/cc3200/bootmgr/relocator/relocator.bin N othersrc/external/mit/micropython/dist/cc3200/bootmgr/sl/user.h N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/diskio.c N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/ffconf.c N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/drivers/sflash_diskio.c N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/drivers/sd_diskio.c N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/drivers/sd_diskio.h N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/drivers/sflash_diskio.h N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/drivers/stdcmd.h N othersrc/external/mit/micropython/dist/cc3200/fatfs/src/option/syscall.c N othersrc/external/mit/micropython/dist/cc3200/hal/fault_registers.h N othersrc/external/mit/micropython/dist/cc3200/hal/cc3200_asm.h N othersrc/external/mit/micropython/dist/cc3200/hal/adc.c N othersrc/external/mit/micropython/dist/cc3200/hal/adc.h N othersrc/external/mit/micropython/dist/cc3200/hal/aes.c N othersrc/external/mit/micropython/dist/cc3200/hal/aes.h N othersrc/external/mit/micropython/dist/cc3200/hal/gpio.c N othersrc/external/mit/micropython/dist/cc3200/hal/cc3200_hal.c N othersrc/external/mit/micropython/dist/cc3200/hal/cc3200_hal.h N othersrc/external/mit/micropython/dist/cc3200/hal/cpu.c N othersrc/external/mit/micropython/dist/cc3200/hal/cpu.h N othersrc/external/mit/micropython/dist/cc3200/hal/crc.c N othersrc/external/mit/micropython/dist/cc3200/hal/crc.h N othersrc/external/mit/micropython/dist/cc3200/hal/debug.h N othersrc/external/mit/micropython/dist/cc3200/hal/des.c N othersrc/external/mit/micropython/dist/cc3200/hal/des.h N othersrc/external/mit/micropython/dist/cc3200/hal/rom_map.h N othersrc/external/mit/micropython/dist/cc3200/hal/gpio.h N othersrc/external/mit/micropython/dist/cc3200/hal/i2c.c N othersrc/external/mit/micropython/dist/cc3200/hal/i2c.h N othersrc/external/mit/micropython/dist/cc3200/hal/i2s.c N othersrc/external/mit/micropython/dist/cc3200/hal/i2s.h N othersrc/external/mit/micropython/dist/cc3200/hal/interrupt.c N othersrc/external/mit/micropython/dist/cc3200/hal/pin.h N othersrc/external/mit/micropython/dist/cc3200/hal/startup_gcc.c N othersrc/external/mit/micropython/dist/cc3200/hal/interrupt.h N othersrc/external/mit/micropython/dist/cc3200/hal/pin.c N othersrc/external/mit/micropython/dist/cc3200/hal/prcm.c N othersrc/external/mit/micropython/dist/cc3200/hal/prcm.h N othersrc/external/mit/micropython/dist/cc3200/hal/rom.h N othersrc/external/mit/micropython/dist/cc3200/hal/rom_patch.h N othersrc/external/mit/micropython/dist/cc3200/hal/sdhost.c N othersrc/external/mit/micropython/dist/cc3200/hal/sdhost.h N othersrc/external/mit/micropython/dist/cc3200/hal/shamd5.c N othersrc/external/mit/micropython/dist/cc3200/hal/shamd5.h N othersrc/external/mit/micropython/dist/cc3200/hal/spi.c N othersrc/external/mit/micropython/dist/cc3200/hal/spi.h N othersrc/external/mit/micropython/dist/cc3200/hal/systick.c N othersrc/external/mit/micropython/dist/cc3200/hal/systick.h N othersrc/external/mit/micropython/dist/cc3200/hal/timer.c N othersrc/external/mit/micropython/dist/cc3200/hal/timer.h N othersrc/external/mit/micropython/dist/cc3200/hal/uart.c N othersrc/external/mit/micropython/dist/cc3200/hal/uart.h N othersrc/external/mit/micropython/dist/cc3200/hal/utils.c N othersrc/external/mit/micropython/dist/cc3200/hal/utils.h N othersrc/external/mit/micropython/dist/cc3200/hal/wdt.c N othersrc/external/mit/micropython/dist/cc3200/hal/wdt.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_stack_die_ctrl.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_apps_config.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/asmdefs.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_adc.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_aes.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_apps_rcm.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_camera.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_common_reg.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_des.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_dthe.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_flash_ctrl.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_gpio.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_gprcm.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_hib1p2.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_hib3p3.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_i2c.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_ints.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_mcasp.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_mcspi.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_memmap.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_mmchs.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_nvic.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_ocp_shared.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_shamd5.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_timer.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_types.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_uart.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_udma.h N othersrc/external/mit/micropython/dist/cc3200/hal/inc/hw_wdt.h N othersrc/external/mit/micropython/dist/cc3200/misc/FreeRTOSHooks.c N othersrc/external/mit/micropython/dist/cc3200/misc/antenna.c N othersrc/external/mit/micropython/dist/cc3200/misc/antenna.h N othersrc/external/mit/micropython/dist/cc3200/misc/help.c N othersrc/external/mit/micropython/dist/cc3200/misc/mperror.c N othersrc/external/mit/micropython/dist/cc3200/misc/mperror.h N othersrc/external/mit/micropython/dist/cc3200/misc/mpexception.c N othersrc/external/mit/micropython/dist/cc3200/misc/mpexception.h N othersrc/external/mit/micropython/dist/cc3200/misc/mpirq.c N othersrc/external/mit/micropython/dist/cc3200/misc/mpirq.h N othersrc/external/mit/micropython/dist/cc3200/misc/mpsystick.c N othersrc/external/mit/micropython/dist/cc3200/misc/mpsystick.h N othersrc/external/mit/micropython/dist/cc3200/mods/modubinascii.c N othersrc/external/mit/micropython/dist/cc3200/mods/modmachine.c N othersrc/external/mit/micropython/dist/cc3200/mods/modnetwork.c N othersrc/external/mit/micropython/dist/cc3200/mods/modnetwork.h N othersrc/external/mit/micropython/dist/cc3200/mods/modubinascii.h N othersrc/external/mit/micropython/dist/cc3200/mods/moduhashlib.c N othersrc/external/mit/micropython/dist/cc3200/mods/moduos.c N othersrc/external/mit/micropython/dist/cc3200/mods/moduos.h N othersrc/external/mit/micropython/dist/cc3200/mods/modusocket.c N othersrc/external/mit/micropython/dist/cc3200/mods/modusocket.h N othersrc/external/mit/micropython/dist/cc3200/mods/modussl.c N othersrc/external/mit/micropython/dist/cc3200/mods/modutime.c N othersrc/external/mit/micropython/dist/cc3200/mods/modwipy.c N othersrc/external/mit/micropython/dist/cc3200/mods/modwlan.c N othersrc/external/mit/micropython/dist/cc3200/mods/modwlan.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybadc.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybadc.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybi2c.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybi2c.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybpin.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybpin.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybrtc.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybrtc.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybsd.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybsd.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybsleep.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybsleep.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybspi.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybspi.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybtimer.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybtimer.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybuart.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybuart.h N othersrc/external/mit/micropython/dist/cc3200/mods/pybwdt.c N othersrc/external/mit/micropython/dist/cc3200/mods/pybwdt.h N othersrc/external/mit/micropython/dist/cc3200/simplelink/cc_pal.c N othersrc/external/mit/micropython/dist/cc3200/simplelink/cc_pal.h N othersrc/external/mit/micropython/dist/cc3200/simplelink/user.h N othersrc/external/mit/micropython/dist/cc3200/simplelink/oslib/osi_freertos.c N othersrc/external/mit/micropython/dist/cc3200/simplelink/oslib/osi.h N othersrc/external/mit/micropython/dist/cc3200/telnet/telnet.c N othersrc/external/mit/micropython/dist/cc3200/telnet/telnet.h N othersrc/external/mit/micropython/dist/cc3200/tools/update-wipy.py N othersrc/external/mit/micropython/dist/cc3200/tools/smoke.py.exp N othersrc/external/mit/micropython/dist/cc3200/tools/smoke.py N othersrc/external/mit/micropython/dist/cc3200/tools/uniflash.py N othersrc/external/mit/micropython/dist/cc3200/util/sleeprestore.h N othersrc/external/mit/micropython/dist/cc3200/util/cryptohash.c N othersrc/external/mit/micropython/dist/cc3200/util/cryptohash.h N othersrc/external/mit/micropython/dist/cc3200/util/fifo.c N othersrc/external/mit/micropython/dist/cc3200/util/fifo.h N othersrc/external/mit/micropython/dist/cc3200/util/gccollect.c N othersrc/external/mit/micropython/dist/cc3200/util/gccollect.h N othersrc/external/mit/micropython/dist/cc3200/util/gchelper.h N othersrc/external/mit/micropython/dist/cc3200/util/gchelper.s N othersrc/external/mit/micropython/dist/cc3200/util/random.c N othersrc/external/mit/micropython/dist/cc3200/util/random.h N othersrc/external/mit/micropython/dist/cc3200/util/sleeprestore.s N othersrc/external/mit/micropython/dist/cc3200/util/socketfifo.c N othersrc/external/mit/micropython/dist/cc3200/util/socketfifo.h N othersrc/external/mit/micropython/dist/cc3200/util/std.h N othersrc/external/mit/micropython/dist/docs/README.md N othersrc/external/mit/micropython/dist/docs/Makefile N othersrc/external/mit/micropython/dist/docs/conf.py N othersrc/external/mit/micropython/dist/docs/esp8266_contents.rst N othersrc/external/mit/micropython/dist/docs/esp8266_index.rst N othersrc/external/mit/micropython/dist/docs/license.rst N othersrc/external/mit/micropython/dist/docs/make.bat N othersrc/external/mit/micropython/dist/docs/pyboard_contents.rst N othersrc/external/mit/micropython/dist/docs/pyboard_index.rst N othersrc/external/mit/micropython/dist/docs/unix_index.rst N othersrc/external/mit/micropython/dist/docs/unix_contents.rst N othersrc/external/mit/micropython/dist/docs/topindex.html N othersrc/external/mit/micropython/dist/docs/wipy_contents.rst N othersrc/external/mit/micropython/dist/docs/wipy_index.rst N othersrc/external/mit/micropython/dist/docs/library/machine.Timer.rst N othersrc/external/mit/micropython/dist/docs/library/esp.socket.rst N othersrc/external/mit/micropython/dist/docs/library/cmath.rst N othersrc/external/mit/micropython/dist/docs/library/esp.rst N othersrc/external/mit/micropython/dist/docs/library/index.rst N othersrc/external/mit/micropython/dist/docs/library/gc.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.Accel.rst N othersrc/external/mit/micropython/dist/docs/library/machine.ADC.rst N othersrc/external/mit/micropython/dist/docs/library/machine.I2C.rst N othersrc/external/mit/micropython/dist/docs/library/machine.Pin.rst N othersrc/external/mit/micropython/dist/docs/library/machine.RTC.rst N othersrc/external/mit/micropython/dist/docs/library/machine.SD.rst N othersrc/external/mit/micropython/dist/docs/library/machine.SPI.rst N othersrc/external/mit/micropython/dist/docs/library/machine.UART.rst N othersrc/external/mit/micropython/dist/docs/library/machine.WDT.rst N othersrc/external/mit/micropython/dist/docs/library/machine.rst N othersrc/external/mit/micropython/dist/docs/library/math.rst N othersrc/external/mit/micropython/dist/docs/library/micropython.rst N othersrc/external/mit/micropython/dist/docs/library/network.rst N othersrc/external/mit/micropython/dist/docs/library/os.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.ADC.rst N othersrc/external/mit/micropython/dist/docs/library/ujson.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.ExtInt.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.CAN.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.DAC.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.Servo.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.I2C.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.LCD.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.LED.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.Pin.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.RTC.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.SPI.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.Switch.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.Timer.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.UART.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.USB_VCP.rst N othersrc/external/mit/micropython/dist/docs/library/pyb.rst N othersrc/external/mit/micropython/dist/docs/library/select.rst N othersrc/external/mit/micropython/dist/docs/library/struct.rst N othersrc/external/mit/micropython/dist/docs/library/sys.rst N othersrc/external/mit/micropython/dist/docs/library/time.rst N othersrc/external/mit/micropython/dist/docs/library/ubinascii.rst N othersrc/external/mit/micropython/dist/docs/library/uctypes.rst N othersrc/external/mit/micropython/dist/docs/library/uhashlib.rst N othersrc/external/mit/micropython/dist/docs/library/uheapq.rst N othersrc/external/mit/micropython/dist/docs/library/ure.rst N othersrc/external/mit/micropython/dist/docs/library/usocket.rst N othersrc/external/mit/micropython/dist/docs/library/ussl.rst N othersrc/external/mit/micropython/dist/docs/library/uzlib.rst N othersrc/external/mit/micropython/dist/docs/library/wipy.rst N othersrc/external/mit/micropython/dist/docs/pyboard/general.rst N othersrc/external/mit/micropython/dist/docs/pyboard/quickref.rst N othersrc/external/mit/micropython/dist/docs/pyboard/hardware/index.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/index.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/assembler.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/accel.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/amp_skin.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/fading_led.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/debounce.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/pass_through.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/intro.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/lcd_skin.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/leds.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/power_ctrl.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/repl.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/reset.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/script.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/servo.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/switch.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/timer.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/usb_mouse.rst N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/img/fading_leds_breadboard_fritzing.png N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/img/pyboard_servo.jpg N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/img/pyboard_usb_micro.jpg N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/img/skin_amp_1.jpg N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/img/skin_amp_2.jpg N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/img/skin_lcd_1.jpg N othersrc/external/mit/micropython/dist/docs/pyboard/tutorial/img/skin_lcd_2.jpg N othersrc/external/mit/micropython/dist/docs/readthedocs/settings/local_settings.py N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_directives.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_compare.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_arith.rst N othersrc/external/mit/micropython/dist/docs/reference/repl.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_hints_tips.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_float.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_label_branch.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_index.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_logical_bit.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_ldr.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_misc.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_mov.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_stack.rst N othersrc/external/mit/micropython/dist/docs/reference/asm_thumb2_str.rst N othersrc/external/mit/micropython/dist/docs/reference/index.rst N othersrc/external/mit/micropython/dist/docs/reference/isr_rules.rst N othersrc/external/mit/micropython/dist/docs/static/customstyle.css N othersrc/external/mit/micropython/dist/docs/templates/layout.html N othersrc/external/mit/micropython/dist/docs/wipy/general.rst N othersrc/external/mit/micropython/dist/docs/wipy/quickref.rst N othersrc/external/mit/micropython/dist/docs/wipy/tutorial/blynk.rst N othersrc/external/mit/micropython/dist/docs/wipy/tutorial/index.rst N othersrc/external/mit/micropython/dist/docs/wipy/tutorial/intro.rst N othersrc/external/mit/micropython/dist/docs/wipy/tutorial/repl.rst N othersrc/external/mit/micropython/dist/docs/wipy/tutorial/reset.rst N othersrc/external/mit/micropython/dist/docs/wipy/tutorial/wlan.rst N othersrc/external/mit/micropython/dist/drivers/README.md N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/data_types.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/ccspi.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/host_driver_version.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/cc3000_common.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/evnt_handler.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/hci.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/inet_ntop.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/inet_pton.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/netapp.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/nvmem.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/patch_prog.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/security.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/socket.h N othersrc/external/mit/micropython/dist/drivers/cc3000/inc/wlan.h N othersrc/external/mit/micropython/dist/drivers/cc3000/src/cc3000_common.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/ccspi.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/evnt_handler.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/hci.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/inet_ntop.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/inet_pton.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/netapp.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/nvmem.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/patch.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/patch_prog.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/security.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/socket.c N othersrc/external/mit/micropython/dist/drivers/cc3000/src/wlan.c N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/objInclusion.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/flowcont.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/device.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/driver.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/netapp.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/fs.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/protocol.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/netcfg.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/nonos.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/wlan_rx_filters.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/simplelink.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/socket.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/spawn.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/trace.h N othersrc/external/mit/micropython/dist/drivers/cc3100/inc/wlan.h N othersrc/external/mit/micropython/dist/drivers/cc3100/src/flowcont.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/device.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/driver.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/netapp.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/fs.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/netcfg.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/nonos.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/socket.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/spawn.c N othersrc/external/mit/micropython/dist/drivers/cc3100/src/wlan.c N othersrc/external/mit/micropython/dist/drivers/nrf24l01/nrf24l01test.py N othersrc/external/mit/micropython/dist/drivers/nrf24l01/nrf24l01.py N othersrc/external/mit/micropython/dist/drivers/onewire/ds18x20.py N othersrc/external/mit/micropython/dist/drivers/onewire/onewire.py N othersrc/external/mit/micropython/dist/drivers/sdcard/sdcard.py N othersrc/external/mit/micropython/dist/drivers/wiznet5k/README.md N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/socket.c N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/socket.h N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/wizchip_conf.c N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/wizchip_conf.h N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/w5200/w5200.c N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/w5200/w5200.h N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/w5500/w5500.c N othersrc/external/mit/micropython/dist/drivers/wiznet5k/ethernet/w5500/w5500.h N othersrc/external/mit/micropython/dist/drivers/wiznet5k/internet/dhcp/dhcp.c N othersrc/external/mit/micropython/dist/drivers/wiznet5k/internet/dhcp/dhcp.h N othersrc/external/mit/micropython/dist/drivers/wiznet5k/internet/dns/dns.c N othersrc/external/mit/micropython/dist/drivers/wiznet5k/internet/dns/dns.h N othersrc/external/mit/micropython/dist/esp8266/README.md N othersrc/external/mit/micropython/dist/esp8266/Makefile N othersrc/external/mit/micropython/dist/esp8266/esp8266.ld N othersrc/external/mit/micropython/dist/esp8266/main.c N othersrc/external/mit/micropython/dist/esp8266/eagle.rom.addr.v6.ld N othersrc/external/mit/micropython/dist/esp8266/esp_mphal.c N othersrc/external/mit/micropython/dist/esp8266/esp_mphal.h N othersrc/external/mit/micropython/dist/esp8266/etshal.h N othersrc/external/mit/micropython/dist/esp8266/gccollect.c N othersrc/external/mit/micropython/dist/esp8266/gccollect.h N othersrc/external/mit/micropython/dist/esp8266/gchelper.s N othersrc/external/mit/micropython/dist/esp8266/makeimg.py N othersrc/external/mit/micropython/dist/esp8266/modesp.c N othersrc/external/mit/micropython/dist/esp8266/modnetwork.c N othersrc/external/mit/micropython/dist/esp8266/modpyb.c N othersrc/external/mit/micropython/dist/esp8266/modpyb.h N othersrc/external/mit/micropython/dist/esp8266/modpybadc.c N othersrc/external/mit/micropython/dist/esp8266/modpybpin.c N othersrc/external/mit/micropython/dist/esp8266/modpybrtc.c N othersrc/external/mit/micropython/dist/esp8266/modpybrtc.h N othersrc/external/mit/micropython/dist/esp8266/moduos.c N othersrc/external/mit/micropython/dist/esp8266/modutime.c N othersrc/external/mit/micropython/dist/esp8266/mpconfigport.h N othersrc/external/mit/micropython/dist/esp8266/strtoll.c N othersrc/external/mit/micropython/dist/esp8266/qstrdefsport.h N othersrc/external/mit/micropython/dist/esp8266/uart_register.h N othersrc/external/mit/micropython/dist/esp8266/uart.c N othersrc/external/mit/micropython/dist/esp8266/uart.h N othersrc/external/mit/micropython/dist/esp8266/user_config.h N othersrc/external/mit/micropython/dist/esp8266/utils.c N othersrc/external/mit/micropython/dist/esp8266/utils.h N othersrc/external/mit/micropython/dist/esp8266/scripts/main.py N othersrc/external/mit/micropython/dist/examples/conwaylife.py N othersrc/external/mit/micropython/dist/examples/accel_i2c.py N othersrc/external/mit/micropython/dist/examples/accellog.py N othersrc/external/mit/micropython/dist/examples/asmled.py N othersrc/external/mit/micropython/dist/examples/asmsum.py N othersrc/external/mit/micropython/dist/examples/micropython.py N othersrc/external/mit/micropython/dist/examples/ledangle.py N othersrc/external/mit/micropython/dist/examples/mandel.py N othersrc/external/mit/micropython/dist/examples/switch.py N othersrc/external/mit/micropython/dist/examples/pins.py N othersrc/external/mit/micropython/dist/examples/pyb.py N othersrc/external/mit/micropython/dist/examples/SDdatalogger/cardreader.py N othersrc/external/mit/micropython/dist/examples/SDdatalogger/README.md N othersrc/external/mit/micropython/dist/examples/SDdatalogger/boot.py N othersrc/external/mit/micropython/dist/examples/SDdatalogger/datalogger.py N othersrc/external/mit/micropython/dist/examples/unix/ffi_example.py N othersrc/external/mit/micropython/dist/examples/unix/http-client.py N othersrc/external/mit/micropython/dist/examples/unix/http-server.py N othersrc/external/mit/micropython/dist/extmod/fsusermount.c N othersrc/external/mit/micropython/dist/extmod/fsusermount.h N othersrc/external/mit/micropython/dist/extmod/machine_mem.c N othersrc/external/mit/micropython/dist/extmod/machine_mem.h N othersrc/external/mit/micropython/dist/extmod/modlwip.c N othersrc/external/mit/micropython/dist/extmod/modubinascii.c N othersrc/external/mit/micropython/dist/extmod/modubinascii.h N othersrc/external/mit/micropython/dist/extmod/moductypes.c N othersrc/external/mit/micropython/dist/extmod/moduhashlib.c N othersrc/external/mit/micropython/dist/extmod/moduheapq.c N othersrc/external/mit/micropython/dist/extmod/modujson.c N othersrc/external/mit/micropython/dist/extmod/modure.c N othersrc/external/mit/micropython/dist/extmod/modussl.c N othersrc/external/mit/micropython/dist/extmod/moduzlib.c N othersrc/external/mit/micropython/dist/extmod/crypto-algorithms/sha256.c N othersrc/external/mit/micropython/dist/extmod/crypto-algorithms/sha256.h N othersrc/external/mit/micropython/dist/extmod/lwip-include/lwipopts.h N othersrc/external/mit/micropython/dist/extmod/lwip-include/arch/perf.h N othersrc/external/mit/micropython/dist/extmod/lwip-include/arch/cc.h N othersrc/external/mit/micropython/dist/extmod/re1.5/compilecode.c N othersrc/external/mit/micropython/dist/extmod/re1.5/charclass.c N othersrc/external/mit/micropython/dist/extmod/re1.5/recursiveloop.c N othersrc/external/mit/micropython/dist/extmod/re1.5/dumpcode.c N othersrc/external/mit/micropython/dist/extmod/re1.5/re1.5.h N othersrc/external/mit/micropython/dist/extmod/uzlib/adler32.c N othersrc/external/mit/micropython/dist/extmod/uzlib/tinf.h N othersrc/external/mit/micropython/dist/extmod/uzlib/tinflate.c N othersrc/external/mit/micropython/dist/extmod/uzlib/tinfzlib.c N othersrc/external/mit/micropython/dist/logo/micropythonpowered-art.png N othersrc/external/mit/micropython/dist/logo/upython-with-micro.jpg N othersrc/external/mit/micropython/dist/logo/FONT-LICENSE.txt N othersrc/external/mit/micropython/dist/logo/logo.jpg N othersrc/external/mit/micropython/dist/logo/trans-logo.png N othersrc/external/mit/micropython/dist/logo/vector-logo-inkscape_master.svg N othersrc/external/mit/micropython/dist/logo/upython-with-micro.png N othersrc/external/mit/micropython/dist/logo/vector-logo-2-BW.svg N othersrc/external/mit/micropython/dist/logo/vector-logo-2.png N othersrc/external/mit/micropython/dist/logo/vector-logo-3.png N othersrc/external/mit/micropython/dist/logo/vector-logo-R2000.dxf N othersrc/external/mit/micropython/dist/logo/vector-text-R2000.dxf N othersrc/external/mit/micropython/dist/logo/vector-logo.svg N othersrc/external/mit/micropython/dist/logo/vector-text.svg N othersrc/external/mit/micropython/dist/minimal/mpconfigport.h N othersrc/external/mit/micropython/dist/minimal/Makefile N othersrc/external/mit/micropython/dist/minimal/main.c N othersrc/external/mit/micropython/dist/minimal/qstrdefsport.h N othersrc/external/mit/micropython/dist/minimal/mphalport.h N othersrc/external/mit/micropython/dist/minimal/stm32f405.ld N othersrc/external/mit/micropython/dist/minimal/uart_core.c N othersrc/external/mit/micropython/dist/minimal/uart_extra.c N othersrc/external/mit/micropython/dist/pic16bit/modpybswitch.c N othersrc/external/mit/micropython/dist/pic16bit/modpybled.c N othersrc/external/mit/micropython/dist/pic16bit/Makefile N othersrc/external/mit/micropython/dist/pic16bit/board.c N othersrc/external/mit/micropython/dist/pic16bit/board.h N othersrc/external/mit/micropython/dist/pic16bit/main.c N othersrc/external/mit/micropython/dist/pic16bit/modpyb.c N othersrc/external/mit/micropython/dist/pic16bit/modpyb.h N othersrc/external/mit/micropython/dist/pic16bit/mpconfigport.h N othersrc/external/mit/micropython/dist/pic16bit/pic16bit_mphal.c N othersrc/external/mit/micropython/dist/pic16bit/pic16bit_mphal.h N othersrc/external/mit/micropython/dist/pic16bit/qstrdefsport.h N othersrc/external/mit/micropython/dist/pic16bit/unistd.h N othersrc/external/mit/micropython/dist/py/emitinlinethumb.c N othersrc/external/mit/micropython/dist/py/builtinevex.c N othersrc/external/mit/micropython/dist/py/argcheck.c N othersrc/external/mit/micropython/dist/py/asmarm.c N othersrc/external/mit/micropython/dist/py/asmarm.h N othersrc/external/mit/micropython/dist/py/asmthumb.c N othersrc/external/mit/micropython/dist/py/asmthumb.h N othersrc/external/mit/micropython/dist/py/asmx64.c N othersrc/external/mit/micropython/dist/py/asmx64.h N othersrc/external/mit/micropython/dist/py/asmx86.c N othersrc/external/mit/micropython/dist/py/asmx86.h N othersrc/external/mit/micropython/dist/py/bc.c N othersrc/external/mit/micropython/dist/py/bc.h N othersrc/external/mit/micropython/dist/py/bc0.h N othersrc/external/mit/micropython/dist/py/binary.c N othersrc/external/mit/micropython/dist/py/binary.h N othersrc/external/mit/micropython/dist/py/builtin.h N othersrc/external/mit/micropython/dist/py/makeversionhdr.py N othersrc/external/mit/micropython/dist/py/builtinimport.c N othersrc/external/mit/micropython/dist/py/compile.c N othersrc/external/mit/micropython/dist/py/compile.h N othersrc/external/mit/micropython/dist/py/emit.h N othersrc/external/mit/micropython/dist/py/emitbc.c N othersrc/external/mit/micropython/dist/py/modgc.c N othersrc/external/mit/micropython/dist/py/emitcommon.c N othersrc/external/mit/micropython/dist/py/emitglue.c N othersrc/external/mit/micropython/dist/py/emitglue.h N othersrc/external/mit/micropython/dist/py/formatfloat.c N othersrc/external/mit/micropython/dist/py/emitnative.c N othersrc/external/mit/micropython/dist/py/objint_longlong.c N othersrc/external/mit/micropython/dist/py/formatfloat.h N othersrc/external/mit/micropython/dist/py/frozenmod.c N othersrc/external/mit/micropython/dist/py/frozenmod.h N othersrc/external/mit/micropython/dist/py/gc.c N othersrc/external/mit/micropython/dist/py/gc.h N othersrc/external/mit/micropython/dist/py/grammar.h N othersrc/external/mit/micropython/dist/py/lexer.c N othersrc/external/mit/micropython/dist/py/lexer.h N othersrc/external/mit/micropython/dist/py/lexerstr.c N othersrc/external/mit/micropython/dist/py/lexerunix.c N othersrc/external/mit/micropython/dist/py/makeqstrdata.py N othersrc/external/mit/micropython/dist/py/mkrules.mk N othersrc/external/mit/micropython/dist/py/malloc.c N othersrc/external/mit/micropython/dist/py/map.c N othersrc/external/mit/micropython/dist/py/misc.h N othersrc/external/mit/micropython/dist/py/mkenv.mk N othersrc/external/mit/micropython/dist/py/modbuiltins.c N othersrc/external/mit/micropython/dist/py/modarray.c N othersrc/external/mit/micropython/dist/py/modmath.c N othersrc/external/mit/micropython/dist/py/modcmath.c N othersrc/external/mit/micropython/dist/py/modcollections.c N othersrc/external/mit/micropython/dist/py/modio.c N othersrc/external/mit/micropython/dist/py/modmicropython.c N othersrc/external/mit/micropython/dist/py/modstruct.c N othersrc/external/mit/micropython/dist/py/modsys.c N othersrc/external/mit/micropython/dist/py/mpconfig.h N othersrc/external/mit/micropython/dist/py/mphal.h N othersrc/external/mit/micropython/dist/py/mpprint.c N othersrc/external/mit/micropython/dist/py/mpprint.h N othersrc/external/mit/micropython/dist/py/mpstate.c N othersrc/external/mit/micropython/dist/py/mpstate.h N othersrc/external/mit/micropython/dist/py/mpz.c N othersrc/external/mit/micropython/dist/py/mpz.h N othersrc/external/mit/micropython/dist/py/nativeglue.c N othersrc/external/mit/micropython/dist/py/nlr.h N othersrc/external/mit/micropython/dist/py/nlrsetjmp.c N othersrc/external/mit/micropython/dist/py/nlrthumb.S N othersrc/external/mit/micropython/dist/py/nlrx64.S N othersrc/external/mit/micropython/dist/py/nlrx86.S N othersrc/external/mit/micropython/dist/py/nlrxtensa.S N othersrc/external/mit/micropython/dist/py/obj.c N othersrc/external/mit/micropython/dist/py/obj.h N othersrc/external/mit/micropython/dist/py/objarray.c N othersrc/external/mit/micropython/dist/py/objattrtuple.c N othersrc/external/mit/micropython/dist/py/objbool.c N othersrc/external/mit/micropython/dist/py/objboundmeth.c N othersrc/external/mit/micropython/dist/py/objcell.c N othersrc/external/mit/micropython/dist/py/objclosure.c N othersrc/external/mit/micropython/dist/py/objcomplex.c N othersrc/external/mit/micropython/dist/py/objdict.c N othersrc/external/mit/micropython/dist/py/objenumerate.c N othersrc/external/mit/micropython/dist/py/objexcept.c N othersrc/external/mit/micropython/dist/py/objexcept.h N othersrc/external/mit/micropython/dist/py/objfilter.c N othersrc/external/mit/micropython/dist/py/objfloat.c N othersrc/external/mit/micropython/dist/py/objfun.c N othersrc/external/mit/micropython/dist/py/objfun.h N othersrc/external/mit/micropython/dist/py/objgenerator.c N othersrc/external/mit/micropython/dist/py/objgenerator.h N othersrc/external/mit/micropython/dist/py/objgetitemiter.c N othersrc/external/mit/micropython/dist/py/objint.c N othersrc/external/mit/micropython/dist/py/objint.h N othersrc/external/mit/micropython/dist/py/objnamedtuple.c N othersrc/external/mit/micropython/dist/py/objint_mpz.c N othersrc/external/mit/micropython/dist/py/objlist.c N othersrc/external/mit/micropython/dist/py/objlist.h N othersrc/external/mit/micropython/dist/py/objmap.c N othersrc/external/mit/micropython/dist/py/objmodule.c N othersrc/external/mit/micropython/dist/py/objmodule.h N othersrc/external/mit/micropython/dist/py/objpolyiter.c N othersrc/external/mit/micropython/dist/py/objnone.c N othersrc/external/mit/micropython/dist/py/objobject.c N othersrc/external/mit/micropython/dist/py/objproperty.c N othersrc/external/mit/micropython/dist/py/objrange.c N othersrc/external/mit/micropython/dist/py/objreversed.c N othersrc/external/mit/micropython/dist/py/objset.c N othersrc/external/mit/micropython/dist/py/objsingleton.c N othersrc/external/mit/micropython/dist/py/objslice.c N othersrc/external/mit/micropython/dist/py/objstr.c N othersrc/external/mit/micropython/dist/py/objstr.h N othersrc/external/mit/micropython/dist/py/objstringio.c N othersrc/external/mit/micropython/dist/py/objstrunicode.c N othersrc/external/mit/micropython/dist/py/objtuple.c N othersrc/external/mit/micropython/dist/py/objtuple.h N othersrc/external/mit/micropython/dist/py/objtype.c N othersrc/external/mit/micropython/dist/py/objtype.h N othersrc/external/mit/micropython/dist/py/objzip.c N othersrc/external/mit/micropython/dist/py/opmethods.c N othersrc/external/mit/micropython/dist/py/parse.c N othersrc/external/mit/micropython/dist/py/parse.h N othersrc/external/mit/micropython/dist/py/py.mk N othersrc/external/mit/micropython/dist/py/parsenum.c N othersrc/external/mit/micropython/dist/py/parsenum.h N othersrc/external/mit/micropython/dist/py/parsenumbase.c N othersrc/external/mit/micropython/dist/py/parsenumbase.h N othersrc/external/mit/micropython/dist/py/qstr.c N othersrc/external/mit/micropython/dist/py/qstr.h N othersrc/external/mit/micropython/dist/py/qstrdefs.h N othersrc/external/mit/micropython/dist/py/repl.c N othersrc/external/mit/micropython/dist/py/repl.h N othersrc/external/mit/micropython/dist/py/runtime.c N othersrc/external/mit/micropython/dist/py/runtime.h N othersrc/external/mit/micropython/dist/py/runtime0.h N othersrc/external/mit/micropython/dist/py/scope.c N othersrc/external/mit/micropython/dist/py/scope.h N othersrc/external/mit/micropython/dist/py/sequence.c N othersrc/external/mit/micropython/dist/py/showbc.c N othersrc/external/mit/micropython/dist/py/smallint.c N othersrc/external/mit/micropython/dist/py/smallint.h N othersrc/external/mit/micropython/dist/py/stackctrl.c N othersrc/external/mit/micropython/dist/py/stackctrl.h N othersrc/external/mit/micropython/dist/py/stream.c N othersrc/external/mit/micropython/dist/py/stream.h N othersrc/external/mit/micropython/dist/py/unicode.c N othersrc/external/mit/micropython/dist/py/unicode.h N othersrc/external/mit/micropython/dist/py/vm.c N othersrc/external/mit/micropython/dist/py/vstr.c N othersrc/external/mit/micropython/dist/py/vmentrytable.h N othersrc/external/mit/micropython/dist/py/warning.c N othersrc/external/mit/micropython/dist/qemu-arm/mpconfigport.h N othersrc/external/mit/micropython/dist/qemu-arm/README.md N othersrc/external/mit/micropython/dist/qemu-arm/Makefile N othersrc/external/mit/micropython/dist/qemu-arm/qstrdefsport.h N othersrc/external/mit/micropython/dist/qemu-arm/main.c N othersrc/external/mit/micropython/dist/qemu-arm/mphalport.h N othersrc/external/mit/micropython/dist/qemu-arm/test_main.c N othersrc/external/mit/micropython/dist/stmhal/.gitignore N othersrc/external/mit/micropython/dist/stmhal/Makefile N othersrc/external/mit/micropython/dist/stmhal/accel.c N othersrc/external/mit/micropython/dist/stmhal/accel.h N othersrc/external/mit/micropython/dist/stmhal/adc.c N othersrc/external/mit/micropython/dist/stmhal/adc.h N othersrc/external/mit/micropython/dist/stmhal/autoflash N othersrc/external/mit/micropython/dist/stmhal/font_petme128_8x8.h N othersrc/external/mit/micropython/dist/stmhal/bufhelper.c N othersrc/external/mit/micropython/dist/stmhal/bufhelper.h N othersrc/external/mit/micropython/dist/stmhal/can.c N othersrc/external/mit/micropython/dist/stmhal/can.h N othersrc/external/mit/micropython/dist/stmhal/help.c N othersrc/external/mit/micropython/dist/stmhal/gccollect.c N othersrc/external/mit/micropython/dist/stmhal/dac.c N othersrc/external/mit/micropython/dist/stmhal/dac.h N othersrc/external/mit/micropython/dist/stmhal/diskio.c N othersrc/external/mit/micropython/dist/stmhal/dma.c N othersrc/external/mit/micropython/dist/stmhal/dma.h N othersrc/external/mit/micropython/dist/stmhal/extint.c N othersrc/external/mit/micropython/dist/stmhal/extint.h N othersrc/external/mit/micropython/dist/stmhal/ffconf.c N othersrc/external/mit/micropython/dist/stmhal/file.c N othersrc/external/mit/micropython/dist/stmhal/file.h N othersrc/external/mit/micropython/dist/stmhal/flash.c N othersrc/external/mit/micropython/dist/stmhal/flash.h N othersrc/external/mit/micropython/dist/stmhal/make-stmconst.py N othersrc/external/mit/micropython/dist/stmhal/gccollect.h N othersrc/external/mit/micropython/dist/stmhal/gchelper.s N othersrc/external/mit/micropython/dist/stmhal/lexerfatfs.c N othersrc/external/mit/micropython/dist/stmhal/i2c.c N othersrc/external/mit/micropython/dist/stmhal/i2c.h N othersrc/external/mit/micropython/dist/stmhal/import.c N othersrc/external/mit/micropython/dist/stmhal/input.c N othersrc/external/mit/micropython/dist/stmhal/irq.c N othersrc/external/mit/micropython/dist/stmhal/irq.h N othersrc/external/mit/micropython/dist/stmhal/lcd.c N othersrc/external/mit/micropython/dist/stmhal/lcd.h N othersrc/external/mit/micropython/dist/stmhal/led.c N othersrc/external/mit/micropython/dist/stmhal/led.h N othersrc/external/mit/micropython/dist/stmhal/modmachine.c N othersrc/external/mit/micropython/dist/stmhal/main.c N othersrc/external/mit/micropython/dist/stmhal/memory.h N othersrc/external/mit/micropython/dist/stmhal/pin_defs_stmhal.c N othersrc/external/mit/micropython/dist/stmhal/modnwwiznet5k.c N othersrc/external/mit/micropython/dist/stmhal/modmachine.h N othersrc/external/mit/micropython/dist/stmhal/modnetwork.c N othersrc/external/mit/micropython/dist/stmhal/modnetwork.h N othersrc/external/mit/micropython/dist/stmhal/modnwcc3k.c N othersrc/external/mit/micropython/dist/stmhal/pin.c N othersrc/external/mit/micropython/dist/stmhal/moduselect.c N othersrc/external/mit/micropython/dist/stmhal/modpyb.c N othersrc/external/mit/micropython/dist/stmhal/modstm.c N othersrc/external/mit/micropython/dist/stmhal/moduos.c N othersrc/external/mit/micropython/dist/stmhal/mpconfigport.h N othersrc/external/mit/micropython/dist/stmhal/modusocket.c N othersrc/external/mit/micropython/dist/stmhal/modutime.c N othersrc/external/mit/micropython/dist/stmhal/pin_defs_stmhal.h N othersrc/external/mit/micropython/dist/stmhal/mpconfigport.mk N othersrc/external/mit/micropython/dist/stmhal/mphalport.c N othersrc/external/mit/micropython/dist/stmhal/mphalport.h N othersrc/external/mit/micropython/dist/stmhal/pendsv.c N othersrc/external/mit/micropython/dist/stmhal/pendsv.h N othersrc/external/mit/micropython/dist/stmhal/pin.h N othersrc/external/mit/micropython/dist/stmhal/startup_stm32.S N othersrc/external/mit/micropython/dist/stmhal/rng.h N othersrc/external/mit/micropython/dist/stmhal/pybcdc.inf_template N othersrc/external/mit/micropython/dist/stmhal/pin_named_pins.c N othersrc/external/mit/micropython/dist/stmhal/portmodules.h N othersrc/external/mit/micropython/dist/stmhal/pybioctl.h N othersrc/external/mit/micropython/dist/stmhal/pybstdio.c N othersrc/external/mit/micropython/dist/stmhal/rng.c N othersrc/external/mit/micropython/dist/stmhal/qstrdefsport.h N othersrc/external/mit/micropython/dist/stmhal/rtc.c N othersrc/external/mit/micropython/dist/stmhal/rtc.h N othersrc/external/mit/micropython/dist/stmhal/sdcard.c N othersrc/external/mit/micropython/dist/stmhal/sdcard.h N othersrc/external/mit/micropython/dist/stmhal/servo.c N othersrc/external/mit/micropython/dist/stmhal/servo.h N othersrc/external/mit/micropython/dist/stmhal/spi.c N othersrc/external/mit/micropython/dist/stmhal/spi.h N othersrc/external/mit/micropython/dist/stmhal/system_stm32.c N othersrc/external/mit/micropython/dist/stmhal/stm32_it.c N othersrc/external/mit/micropython/dist/stmhal/stm32_it.h N othersrc/external/mit/micropython/dist/stmhal/storage.c N othersrc/external/mit/micropython/dist/stmhal/storage.h N othersrc/external/mit/micropython/dist/stmhal/usbd_msc_storage.c N othersrc/external/mit/micropython/dist/stmhal/systick.c N othersrc/external/mit/micropython/dist/stmhal/systick.h N othersrc/external/mit/micropython/dist/stmhal/timer.c N othersrc/external/mit/micropython/dist/stmhal/timer.h N othersrc/external/mit/micropython/dist/stmhal/uart.c N othersrc/external/mit/micropython/dist/stmhal/uart.h N othersrc/external/mit/micropython/dist/stmhal/usb.c N othersrc/external/mit/micropython/dist/stmhal/usb.h N othersrc/external/mit/micropython/dist/stmhal/usbd_conf.c N othersrc/external/mit/micropython/dist/stmhal/usbd_conf.h N othersrc/external/mit/micropython/dist/stmhal/usbd_cdc_interface.c N othersrc/external/mit/micropython/dist/stmhal/usbd_cdc_interface.h N othersrc/external/mit/micropython/dist/stmhal/usbd_desc.c N othersrc/external/mit/micropython/dist/stmhal/usbd_desc.h N othersrc/external/mit/micropython/dist/stmhal/usbd_msc_storage.h N othersrc/external/mit/micropython/dist/stmhal/usrsw.c N othersrc/external/mit/micropython/dist/stmhal/usrsw.h N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f4xx_prefix.c N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f401_af.csv N othersrc/external/mit/micropython/dist/stmhal/boards/make-pins.py N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f401.ld N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f405_af.csv N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f405.ld N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f411_af.csv N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f411.ld N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f429_af.csv N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f429.ld N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f746_af.csv N othersrc/external/mit/micropython/dist/stmhal/boards/stm32f746.ld N othersrc/external/mit/micropython/dist/stmhal/boards/CERB40/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/CERB40/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/CERB40/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/CERB40/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/ESPRUINO_PICO/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/ESPRUINO_PICO/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/ESPRUINO_PICO/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/ESPRUINO_PICO/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/HYDRABUS/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/HYDRABUS/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/HYDRABUS/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/HYDRABUS/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/NETDUINO_PLUS_2/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/NETDUINO_PLUS_2/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/NETDUINO_PLUS_2/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/NETDUINO_PLUS_2/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/PYBLITEV10/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBLITEV10/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBLITEV10/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/PYBLITEV10/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV10/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV10/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV10/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV10/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV11/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV11/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV11/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV11/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV3/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV3/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV3/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV3/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV4/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV4/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV4/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/PYBV4/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F411DISC/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F411DISC/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F411DISC/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F411DISC/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F429DISC/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F429DISC/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F429DISC/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F429DISC/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F4DISC/stm32f4xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F4DISC/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F4DISC/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F4DISC/pins.csv N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F4DISC/staccel.py N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F7DISC/stm32f7xx_hal_conf.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F7DISC/mpconfigboard.h N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F7DISC/board_init.c N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F7DISC/mpconfigboard.mk N othersrc/external/mit/micropython/dist/stmhal/boards/STM32F7DISC/pins.csv N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/system_stm32f2xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f205xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f207xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f215xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f217xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f2xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f401xc.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f401xe.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f405xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f407xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f411xe.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f415xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f417xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f427xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f429xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f437xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f439xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f4xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f745xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f746xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f756xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/stm32f7xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/system_stm32f4xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/devinc/system_stm32f7xx.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/arm_common_tables.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/arm_const_structs.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/arm_math.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cm0.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cm0plus.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cm3.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cm4.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cm4_simd.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cm7.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cmFunc.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cmInstr.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_cmSimd.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_sc000.h N othersrc/external/mit/micropython/dist/stmhal/cmsis/inc/core_sc300.h N othersrc/external/mit/micropython/dist/stmhal/hal/HALCOMMITS N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_pwr_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_adc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_adc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_can.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_cortex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_dac.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_dac_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_def.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_dma.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_dma_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_flash.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_flash_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_gpio.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_gpio_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_i2c.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_i2s.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_pcd.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_pwr.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_rcc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_rcc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_rtc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_rng.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_rtc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_tim_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_sd.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_spi.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_tim.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_hal_uart.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_ll_sdmmc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/inc/stm32f2xx_ll_usb.h N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_adc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_adc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_cortex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_can.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_dac_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_dac.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_flash.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_dma.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_flash_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_gpio.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_i2c.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_i2s.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_i2s_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_pcd.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_pcd_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_pwr.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_pwr_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_rcc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_rcc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_rng.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_rtc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_rtc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_sd.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_spi.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_tim.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_tim_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_hal_uart.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_ll_sdmmc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f2/src/stm32f2xx_ll_usb.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_adc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_adc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_flash_ramfunc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_can.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_cortex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_dac.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_dac_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_def.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_dma.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_dma_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_flash.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_flash_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_gpio.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_gpio_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_i2c.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_i2c_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_i2s.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_i2s_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_pcd.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_pcd_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_pwr.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_pwr_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_rcc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_rcc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_rng.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_rtc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_rtc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_sd.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_spi.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_tim.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_tim_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_hal_uart.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_ll_sdmmc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/inc/stm32f4xx_ll_usb.h N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_adc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_adc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_cortex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_can.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_dac_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_dac.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_flash.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_dma.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_flash_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_gpio.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_i2c.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_i2s.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_i2s_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_pcd.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_pcd_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_pwr.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_pwr_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_rcc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_rcc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_rng.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_rtc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_rtc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_sd.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_spi.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_tim.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_tim_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_hal_uart.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_ll_sdmmc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f4/src/stm32f4xx_ll_usb.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_adc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_adc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_cortex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_can.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_dac_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_dac.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_dma_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_def.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_dma.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_flash.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_flash_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_gpio.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_gpio_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_i2c.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_i2c_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_i2s.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_pcd.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_pcd_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_pwr.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_pwr_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_rcc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_rcc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_rng.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_rtc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_rtc_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_sd.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_spi.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_tim.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_tim_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_uart.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_hal_uart_ex.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_ll_sdmmc.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/stm32f7xx_ll_usb.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/inc/Legacy/stm32_hal_legacy.h N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_adc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_adc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_cortex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_can.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_dac_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_dac.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_flash.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_dma.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_flash_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_gpio.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_i2c.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_i2s.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_pcd.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_pcd_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_pwr.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_pwr_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_rcc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_rcc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_rng.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_rtc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_rtc_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_sd.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_spi.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_tim.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_tim_ex.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_hal_uart.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_ll_sdmmc.c N othersrc/external/mit/micropython/dist/stmhal/hal/f7/src/stm32f7xx_ll_usb.c N othersrc/external/mit/micropython/dist/stmhal/usbdev/Release_Notes.html N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/inc/usbd_cdc_msc_hid.h N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/inc/usbd_cdc_msc_hid0.h N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/inc/usbd_msc_bot.h N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/inc/usbd_msc_data.h N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/inc/usbd_msc_scsi.h N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/src/usbd_cdc_msc_hid.c N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/src/usbd_msc.c N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/src/usbd_msc_bot.c N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/src/usbd_msc_data.c N othersrc/external/mit/micropython/dist/stmhal/usbdev/class/src/usbd_msc_scsi.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Release_Notes.html N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/AUDIO/Inc/usbh_audio.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/AUDIO/Src/usbh_audio.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/CDC/Inc/usbh_cdc.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/CDC/Src/usbh_cdc.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Inc/usbh_hid_parser.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Inc/usbh_hid_keybd.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Inc/usbh_hid.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Inc/usbh_hid_mouse.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Inc/usbh_hid_usage.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Src/usbh_hid_parser.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Src/usbh_hid_keybd.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Src/usbh_hid.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/HID/Src/usbh_hid_mouse.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MSC/Inc/usbh_msc_bot.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MSC/Inc/usbh_msc.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MSC/Inc/usbh_msc_scsi.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MSC/Src/usbh_msc_bot.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MSC/Src/usbh_msc.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MSC/Src/usbh_msc_scsi.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MTP/Inc/usbh_mtp_ptp.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MTP/Inc/usbh_mtp.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MTP/Src/usbh_mtp_ptp.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/MTP/Src/usbh_mtp.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/Template/Inc/usbh_template.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Class/Template/Src/usbh_template.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Inc/usbh_conf_template.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Inc/usbh_core.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Inc/usbh_ctlreq.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Inc/usbh_def.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Inc/usbh_ioreq.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Inc/usbh_pipes.h N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Src/usbh_conf_template.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Src/usbh_core.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Src/usbh_ctlreq.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Src/usbh_ioreq.c N othersrc/external/mit/micropython/dist/stmhal/usbhost/Core/Src/usbh_pipes.c N othersrc/external/mit/micropython/dist/teensy/README.md N othersrc/external/mit/micropython/dist/teensy/Makefile N othersrc/external/mit/micropython/dist/teensy/add-memzip.sh N othersrc/external/mit/micropython/dist/teensy/help.c N othersrc/external/mit/micropython/dist/teensy/lexerfrozen.c N othersrc/external/mit/micropython/dist/teensy/hal_ftm.c N othersrc/external/mit/micropython/dist/teensy/hal_ftm.h N othersrc/external/mit/micropython/dist/teensy/hal_gpio.c N othersrc/external/mit/micropython/dist/teensy/lcd.c N othersrc/external/mit/micropython/dist/teensy/led.c N othersrc/external/mit/micropython/dist/teensy/led.h N othersrc/external/mit/micropython/dist/teensy/lexerfatfs.c N othersrc/external/mit/micropython/dist/teensy/lexermemzip.h N othersrc/external/mit/micropython/dist/teensy/main.c N othersrc/external/mit/micropython/dist/teensy/make-pins.py N othersrc/external/mit/micropython/dist/teensy/mk20dx256_af.csv N othersrc/external/mit/micropython/dist/teensy/mk20dx256.ld N othersrc/external/mit/micropython/dist/teensy/modpyb.c N othersrc/external/mit/micropython/dist/teensy/pin_defs_teensy.c N othersrc/external/mit/micropython/dist/teensy/mk20dx256_prefix.c N othersrc/external/mit/micropython/dist/teensy/reg.c N othersrc/external/mit/micropython/dist/teensy/mpconfigport.h N othersrc/external/mit/micropython/dist/teensy/pin_defs_teensy.h N othersrc/external/mit/micropython/dist/teensy/qstrdefsport.h N othersrc/external/mit/micropython/dist/teensy/reg.h N othersrc/external/mit/micropython/dist/teensy/servo.c N othersrc/external/mit/micropython/dist/teensy/servo.h N othersrc/external/mit/micropython/dist/teensy/std.h N othersrc/external/mit/micropython/dist/teensy/teensy_hal.c N othersrc/external/mit/micropython/dist/teensy/teensy_hal.h N othersrc/external/mit/micropython/dist/teensy/teensy_pins.csv N othersrc/external/mit/micropython/dist/teensy/timer.c N othersrc/external/mit/micropython/dist/teensy/timer.h N othersrc/external/mit/micropython/dist/teensy/uart.c N othersrc/external/mit/micropython/dist/teensy/usb.c N othersrc/external/mit/micropython/dist/teensy/usb.h N othersrc/external/mit/micropython/dist/teensy/memzip_files/boot.py N othersrc/external/mit/micropython/dist/teensy/memzip_files/main.py N othersrc/external/mit/micropython/dist/tests/README N othersrc/external/mit/micropython/dist/tests/run-bench-tests N othersrc/external/mit/micropython/dist/tests/run-tests N othersrc/external/mit/micropython/dist/tests/run-tests-exp.py N othersrc/external/mit/micropython/dist/tests/run-tests-exp.sh N othersrc/external/mit/micropython/dist/tests/basics/array_construct_endian.py N othersrc/external/mit/micropython/dist/tests/basics/array_construct.py N othersrc/external/mit/micropython/dist/tests/basics/0prelim.py N othersrc/external/mit/micropython/dist/tests/basics/andor.py N othersrc/external/mit/micropython/dist/tests/basics/array1.py N othersrc/external/mit/micropython/dist/tests/basics/array_add.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_eval_error.py N othersrc/external/mit/micropython/dist/tests/basics/array_construct2.py N othersrc/external/mit/micropython/dist/tests/basics/attrtuple1.py N othersrc/external/mit/micropython/dist/tests/basics/array_q.py N othersrc/external/mit/micropython/dist/tests/basics/assign1.py N othersrc/external/mit/micropython/dist/tests/basics/boundmeth1.py N othersrc/external/mit/micropython/dist/tests/basics/bool1.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_abs.py N othersrc/external/mit/micropython/dist/tests/basics/break.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_issubclass.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_allany.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_bin.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_callable.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_chr.py N othersrc/external/mit/micropython/dist/tests/basics/dict_get.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_compile.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_dir.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_divmod.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_ellipsis.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_eval.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_minmax.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_hash.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_hex.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_id.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_override.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_len1.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_property.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_oct.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_ord.py N othersrc/external/mit/micropython/dist/tests/basics/bytearray_construct.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_pow.py N othersrc/external/mit/micropython/dist/tests/basics/bytearray_construct_endian.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_range.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_reversed.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_round.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_slice.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_sorted.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_sum.py N othersrc/external/mit/micropython/dist/tests/basics/builtin_type.py N othersrc/external/mit/micropython/dist/tests/basics/bytearray1.py N othersrc/external/mit/micropython/dist/tests/basics/bytearray_add.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_add.py N othersrc/external/mit/micropython/dist/tests/basics/bytes.py N othersrc/external/mit/micropython/dist/tests/basics/bytearray_slice_assign.py N othersrc/external/mit/micropython/dist/tests/basics/bytearray_longint.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_add_endian.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_compare.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_compare2.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_construct.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_gen.py N othersrc/external/mit/micropython/dist/tests/basics/dict1.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_format_modulo.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_count.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_construct_endian.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_find.py N othersrc/external/mit/micropython/dist/tests/basics/dict_clear.py N othersrc/external/mit/micropython/dist/tests/basics/closure_defargs.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_format_modulo.py.exp N othersrc/external/mit/micropython/dist/tests/basics/bytes_large.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_mult.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_partition.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_replace.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_split.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_strip.py N othersrc/external/mit/micropython/dist/tests/basics/bytes_subscr.py N othersrc/external/mit/micropython/dist/tests/basics/class1.py N othersrc/external/mit/micropython/dist/tests/basics/class2.py N othersrc/external/mit/micropython/dist/tests/basics/class3.py N othersrc/external/mit/micropython/dist/tests/basics/class_bind_self.py N othersrc/external/mit/micropython/dist/tests/basics/class_binop.py N othersrc/external/mit/micropython/dist/tests/basics/closure1.py N othersrc/external/mit/micropython/dist/tests/basics/class_call.py N othersrc/external/mit/micropython/dist/tests/basics/class_contains.py N othersrc/external/mit/micropython/dist/tests/basics/class_descriptor.py N othersrc/external/mit/micropython/dist/tests/basics/class_emptybases.py N othersrc/external/mit/micropython/dist/tests/basics/class_getattr.py N othersrc/external/mit/micropython/dist/tests/basics/class_inherit1.py N othersrc/external/mit/micropython/dist/tests/basics/class_inherit_mul.py N othersrc/external/mit/micropython/dist/tests/basics/class_instance_override.py N othersrc/external/mit/micropython/dist/tests/basics/class_item.py N othersrc/external/mit/micropython/dist/tests/basics/class_new.py N othersrc/external/mit/micropython/dist/tests/basics/class_number.py N othersrc/external/mit/micropython/dist/tests/basics/class_staticclassmethod.py N othersrc/external/mit/micropython/dist/tests/basics/class_store.py N othersrc/external/mit/micropython/dist/tests/basics/class_store_class.py N othersrc/external/mit/micropython/dist/tests/basics/class_str.py N othersrc/external/mit/micropython/dist/tests/basics/class_super.py N othersrc/external/mit/micropython/dist/tests/basics/class_super_object.py N othersrc/external/mit/micropython/dist/tests/basics/class_use_other.py N othersrc/external/mit/micropython/dist/tests/basics/closure2.py N othersrc/external/mit/micropython/dist/tests/basics/continue.py N othersrc/external/mit/micropython/dist/tests/basics/except_match_tuple.py N othersrc/external/mit/micropython/dist/tests/basics/closure_manyvars.py N othersrc/external/mit/micropython/dist/tests/basics/closure_namedarg.py N othersrc/external/mit/micropython/dist/tests/basics/compare_multi.py N othersrc/external/mit/micropython/dist/tests/basics/comprehension1.py N othersrc/external/mit/micropython/dist/tests/basics/containment.py N othersrc/external/mit/micropython/dist/tests/basics/decorator.py N othersrc/external/mit/micropython/dist/tests/basics/del_attr.py N othersrc/external/mit/micropython/dist/tests/basics/del_deref.py N othersrc/external/mit/micropython/dist/tests/basics/del_global.py N othersrc/external/mit/micropython/dist/tests/basics/del_local.py N othersrc/external/mit/micropython/dist/tests/basics/del_name.py N othersrc/external/mit/micropython/dist/tests/basics/del_subscr.py N othersrc/external/mit/micropython/dist/tests/basics/dict2.py N othersrc/external/mit/micropython/dist/tests/basics/exception_chain.py.exp N othersrc/external/mit/micropython/dist/tests/basics/dict_construct.py N othersrc/external/mit/micropython/dist/tests/basics/dict_copy.py N othersrc/external/mit/micropython/dist/tests/basics/dict_del.py N othersrc/external/mit/micropython/dist/tests/basics/lexer.py N othersrc/external/mit/micropython/dist/tests/basics/dict_from_iter.py N othersrc/external/mit/micropython/dist/tests/basics/dict_fromkeys.py N othersrc/external/mit/micropython/dist/tests/basics/dict_intern.py N othersrc/external/mit/micropython/dist/tests/basics/dict_iterator.py N othersrc/external/mit/micropython/dist/tests/basics/dict_pop.py N othersrc/external/mit/micropython/dist/tests/basics/dict_popitem.py N othersrc/external/mit/micropython/dist/tests/basics/dict_setdefault.py N othersrc/external/mit/micropython/dist/tests/basics/dict_specialmeth.py N othersrc/external/mit/micropython/dist/tests/basics/dict_update.py N othersrc/external/mit/micropython/dist/tests/basics/dict_views.py N othersrc/external/mit/micropython/dist/tests/basics/enumerate.py N othersrc/external/mit/micropython/dist/tests/basics/equal.py N othersrc/external/mit/micropython/dist/tests/basics/equal_class.py N othersrc/external/mit/micropython/dist/tests/basics/exception_chain.py N othersrc/external/mit/micropython/dist/tests/basics/exception1.py N othersrc/external/mit/micropython/dist/tests/basics/for_break.py N othersrc/external/mit/micropython/dist/tests/basics/for1.py N othersrc/external/mit/micropython/dist/tests/basics/frozenset_binop.py N othersrc/external/mit/micropython/dist/tests/basics/exceptpoly.py N othersrc/external/mit/micropython/dist/tests/basics/exec1.py N othersrc/external/mit/micropython/dist/tests/basics/filter.py N othersrc/external/mit/micropython/dist/tests/basics/floordivide.py N othersrc/external/mit/micropython/dist/tests/basics/for2.py N othersrc/external/mit/micropython/dist/tests/basics/for3.py N othersrc/external/mit/micropython/dist/tests/basics/for_return.py N othersrc/external/mit/micropython/dist/tests/basics/for_range.py N othersrc/external/mit/micropython/dist/tests/basics/frozenset_difference.py N othersrc/external/mit/micropython/dist/tests/basics/frozenset1.py N othersrc/external/mit/micropython/dist/tests/basics/frozenset_add.py N othersrc/external/mit/micropython/dist/tests/basics/fun_callstardblstar.py N othersrc/external/mit/micropython/dist/tests/basics/frozenset_copy.py N othersrc/external/mit/micropython/dist/tests/basics/fun_annotations.py N othersrc/external/mit/micropython/dist/tests/basics/frozenset_set.py N othersrc/external/mit/micropython/dist/tests/basics/fun1.py N othersrc/external/mit/micropython/dist/tests/basics/fun2.py N othersrc/external/mit/micropython/dist/tests/basics/fun3.py N othersrc/external/mit/micropython/dist/tests/basics/gen_yield_from_close.py N othersrc/external/mit/micropython/dist/tests/basics/fun_calldblstar.py N othersrc/external/mit/micropython/dist/tests/basics/fun_callstar.py N othersrc/external/mit/micropython/dist/tests/basics/fun_largestate.py N othersrc/external/mit/micropython/dist/tests/basics/fun_defargs.py N othersrc/external/mit/micropython/dist/tests/basics/fun_defargs2.py N othersrc/external/mit/micropython/dist/tests/basics/fun_error.py N othersrc/external/mit/micropython/dist/tests/basics/fun_kwargs.py N othersrc/external/mit/micropython/dist/tests/basics/fun_kwonly.py N othersrc/external/mit/micropython/dist/tests/basics/fun_kwonlydef.py N othersrc/external/mit/micropython/dist/tests/basics/fun_kwvarargs.py N othersrc/external/mit/micropython/dist/tests/basics/fun_varargs.py N othersrc/external/mit/micropython/dist/tests/basics/fun_name.py N othersrc/external/mit/micropython/dist/tests/basics/fun_str.py N othersrc/external/mit/micropython/dist/tests/basics/generator1.py N othersrc/external/mit/micropython/dist/tests/basics/gc1.py N othersrc/external/mit/micropython/dist/tests/basics/gen_yield_from_ducktype.py N othersrc/external/mit/micropython/dist/tests/basics/gen_yield_from.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_and.py N othersrc/external/mit/micropython/dist/tests/basics/int1.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_cmp.py N othersrc/external/mit/micropython/dist/tests/basics/int2.py N othersrc/external/mit/micropython/dist/tests/basics/gen_yield_from_exc.py N othersrc/external/mit/micropython/dist/tests/basics/gen_yield_from_iter.py N othersrc/external/mit/micropython/dist/tests/basics/gen_yield_from_send.py N othersrc/external/mit/micropython/dist/tests/basics/gen_yield_from_throw.py N othersrc/external/mit/micropython/dist/tests/basics/generator2.py N othersrc/external/mit/micropython/dist/tests/basics/generator_args.py N othersrc/external/mit/micropython/dist/tests/basics/generator_close.py N othersrc/external/mit/micropython/dist/tests/basics/generator_closure.py N othersrc/external/mit/micropython/dist/tests/basics/generator_exc.py N othersrc/external/mit/micropython/dist/tests/basics/generator_return.py N othersrc/external/mit/micropython/dist/tests/basics/generator_send.py N othersrc/external/mit/micropython/dist/tests/basics/getattr.py N othersrc/external/mit/micropython/dist/tests/basics/getattr1.py N othersrc/external/mit/micropython/dist/tests/basics/getitem.py N othersrc/external/mit/micropython/dist/tests/basics/globals_del.py N othersrc/external/mit/micropython/dist/tests/basics/hasattr1.py N othersrc/external/mit/micropython/dist/tests/basics/ifcond.py N othersrc/external/mit/micropython/dist/tests/basics/list_slice_assign_grow.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_lshift.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_div.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_error.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_rshift.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_mod.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_mul.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_or.py N othersrc/external/mit/micropython/dist/tests/basics/list_clear.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_pow.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_zeroone.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_unary.py N othersrc/external/mit/micropython/dist/tests/basics/int_big_xor.py N othersrc/external/mit/micropython/dist/tests/basics/int_constfolding.py N othersrc/external/mit/micropython/dist/tests/basics/int_bytes.py N othersrc/external/mit/micropython/dist/tests/basics/lambda_defargs.py N othersrc/external/mit/micropython/dist/tests/basics/int_divmod.py N othersrc/external/mit/micropython/dist/tests/basics/int_divzero.py N othersrc/external/mit/micropython/dist/tests/basics/int_long.py N othersrc/external/mit/micropython/dist/tests/basics/int_mpz.py N othersrc/external/mit/micropython/dist/tests/basics/int_small.py N othersrc/external/mit/micropython/dist/tests/basics/is_isnot.py N othersrc/external/mit/micropython/dist/tests/basics/iter0.py N othersrc/external/mit/micropython/dist/tests/basics/iter1.py N othersrc/external/mit/micropython/dist/tests/basics/iter2.py N othersrc/external/mit/micropython/dist/tests/basics/iter_of_iter.py N othersrc/external/mit/micropython/dist/tests/basics/lambda1.py N othersrc/external/mit/micropython/dist/tests/basics/list_slice_3arg.py N othersrc/external/mit/micropython/dist/tests/basics/map.py N othersrc/external/mit/micropython/dist/tests/basics/list1.py N othersrc/external/mit/micropython/dist/tests/basics/list_pop.py N othersrc/external/mit/micropython/dist/tests/basics/list_compare.py N othersrc/external/mit/micropython/dist/tests/basics/list_copy.py N othersrc/external/mit/micropython/dist/tests/basics/list_count.py N othersrc/external/mit/micropython/dist/tests/basics/list_extend.py N othersrc/external/mit/micropython/dist/tests/basics/list_index.py N othersrc/external/mit/micropython/dist/tests/basics/list_insert.py N othersrc/external/mit/micropython/dist/tests/basics/list_mult.py N othersrc/external/mit/micropython/dist/tests/basics/list_remove.py N othersrc/external/mit/micropython/dist/tests/basics/list_reverse.py N othersrc/external/mit/micropython/dist/tests/basics/list_slice.py N othersrc/external/mit/micropython/dist/tests/basics/set_symmetric_difference.py N othersrc/external/mit/micropython/dist/tests/basics/list_slice_assign.py N othersrc/external/mit/micropython/dist/tests/basics/memoryerror.py N othersrc/external/mit/micropython/dist/tests/basics/list_sort.py N othersrc/external/mit/micropython/dist/tests/basics/list_sum.py N othersrc/external/mit/micropython/dist/tests/basics/string_cr_conversion.py N othersrc/external/mit/micropython/dist/tests/basics/memoryerror.py.exp N othersrc/external/mit/micropython/dist/tests/basics/memoryview1.py N othersrc/external/mit/micropython/dist/tests/basics/memoryview_gc.py N othersrc/external/mit/micropython/dist/tests/basics/module1.py N othersrc/external/mit/micropython/dist/tests/basics/module2.py N othersrc/external/mit/micropython/dist/tests/basics/module2.py.exp N othersrc/external/mit/micropython/dist/tests/basics/namedtuple1.py N othersrc/external/mit/micropython/dist/tests/basics/object1.py N othersrc/external/mit/micropython/dist/tests/basics/object_new.py N othersrc/external/mit/micropython/dist/tests/basics/op_error.py N othersrc/external/mit/micropython/dist/tests/basics/ordereddict1.py N othersrc/external/mit/micropython/dist/tests/basics/parser.py N othersrc/external/mit/micropython/dist/tests/basics/print.py N othersrc/external/mit/micropython/dist/tests/basics/python34.py N othersrc/external/mit/micropython/dist/tests/basics/python34.py.exp N othersrc/external/mit/micropython/dist/tests/basics/return1.py N othersrc/external/mit/micropython/dist/tests/basics/scope.py N othersrc/external/mit/micropython/dist/tests/basics/self_type_check.py N othersrc/external/mit/micropython/dist/tests/basics/seq_unpack.py N othersrc/external/mit/micropython/dist/tests/basics/set1.py N othersrc/external/mit/micropython/dist/tests/basics/set_add.py N othersrc/external/mit/micropython/dist/tests/basics/set_binop.py N othersrc/external/mit/micropython/dist/tests/basics/set_clear.py N othersrc/external/mit/micropython/dist/tests/basics/set_copy.py N othersrc/external/mit/micropython/dist/tests/basics/set_difference.py N othersrc/external/mit/micropython/dist/tests/basics/set_discard.py N othersrc/external/mit/micropython/dist/tests/basics/set_intersection.py N othersrc/external/mit/micropython/dist/tests/basics/set_isdisjoint.py N othersrc/external/mit/micropython/dist/tests/basics/set_isfooset.py N othersrc/external/mit/micropython/dist/tests/basics/set_iter.py N othersrc/external/mit/micropython/dist/tests/basics/set_pop.py N othersrc/external/mit/micropython/dist/tests/basics/set_remove.py N othersrc/external/mit/micropython/dist/tests/basics/set_specialmeth.py N othersrc/external/mit/micropython/dist/tests/basics/set_update.py N othersrc/external/mit/micropython/dist/tests/basics/set_union.py N othersrc/external/mit/micropython/dist/tests/basics/set_unop.py N othersrc/external/mit/micropython/dist/tests/basics/slice_attrs.py N othersrc/external/mit/micropython/dist/tests/basics/setattr1.py N othersrc/external/mit/micropython/dist/tests/basics/slots_bool_len.py N othersrc/external/mit/micropython/dist/tests/basics/string1.py N othersrc/external/mit/micropython/dist/tests/basics/string_compare.py N othersrc/external/mit/micropython/dist/tests/basics/string_count.py N othersrc/external/mit/micropython/dist/tests/basics/true_value.py N othersrc/external/mit/micropython/dist/tests/basics/sys1.py N othersrc/external/mit/micropython/dist/tests/basics/try1.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native1.py N othersrc/external/mit/micropython/dist/tests/basics/struct1.py N othersrc/external/mit/micropython/dist/tests/basics/string_crlf_conversion.py N othersrc/external/mit/micropython/dist/tests/basics/string_endswith.py N othersrc/external/mit/micropython/dist/tests/basics/string_escape.py N othersrc/external/mit/micropython/dist/tests/basics/string_find.py N othersrc/external/mit/micropython/dist/tests/basics/string_format.py N othersrc/external/mit/micropython/dist/tests/basics/string_format_modulo.py N othersrc/external/mit/micropython/dist/tests/basics/string_index.py N othersrc/external/mit/micropython/dist/tests/basics/string_istest.py N othersrc/external/mit/micropython/dist/tests/basics/string_join.py N othersrc/external/mit/micropython/dist/tests/basics/string_large.py N othersrc/external/mit/micropython/dist/tests/basics/string_mult.py N othersrc/external/mit/micropython/dist/tests/basics/string_partition.py N othersrc/external/mit/micropython/dist/tests/basics/string_replace.py N othersrc/external/mit/micropython/dist/tests/basics/string_repr.py N othersrc/external/mit/micropython/dist/tests/basics/string_rfind.py N othersrc/external/mit/micropython/dist/tests/basics/string_rindex.py N othersrc/external/mit/micropython/dist/tests/basics/string_rpartition.py N othersrc/external/mit/micropython/dist/tests/basics/string_rsplit.py N othersrc/external/mit/micropython/dist/tests/basics/try2.py N othersrc/external/mit/micropython/dist/tests/basics/string_slice.py N othersrc/external/mit/micropython/dist/tests/basics/string_split.py N othersrc/external/mit/micropython/dist/tests/basics/string_splitlines.py N othersrc/external/mit/micropython/dist/tests/basics/string_startswith.py N othersrc/external/mit/micropython/dist/tests/basics/string_strip.py N othersrc/external/mit/micropython/dist/tests/basics/string_upperlow.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native2_tuple.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_classmethod.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native2_list.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native_buffer.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native3.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native4.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native5.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native_specmeth.py N othersrc/external/mit/micropython/dist/tests/basics/subclass_native_cmp.py N othersrc/external/mit/micropython/dist/tests/basics/try_finally_loops.py N othersrc/external/mit/micropython/dist/tests/basics/syntaxerror.py N othersrc/external/mit/micropython/dist/tests/basics/try_as_var.py N othersrc/external/mit/micropython/dist/tests/basics/try3.py N othersrc/external/mit/micropython/dist/tests/basics/try4.py N othersrc/external/mit/micropython/dist/tests/basics/try_finally1.py N othersrc/external/mit/micropython/dist/tests/basics/try_error.py N othersrc/external/mit/micropython/dist/tests/basics/zip.py N othersrc/external/mit/micropython/dist/tests/basics/try_finally_return.py N othersrc/external/mit/micropython/dist/tests/basics/try_finally_return2.py N othersrc/external/mit/micropython/dist/tests/basics/try_reraise.py N othersrc/external/mit/micropython/dist/tests/basics/try_reraise2.py N othersrc/external/mit/micropython/dist/tests/basics/tuple1.py N othersrc/external/mit/micropython/dist/tests/basics/tuple_compare.py N othersrc/external/mit/micropython/dist/tests/basics/tuple_count.py N othersrc/external/mit/micropython/dist/tests/basics/tuple_index.py N othersrc/external/mit/micropython/dist/tests/basics/tuple_mult.py N othersrc/external/mit/micropython/dist/tests/basics/types1.py N othersrc/external/mit/micropython/dist/tests/basics/types2.py N othersrc/external/mit/micropython/dist/tests/basics/unary_op.py N othersrc/external/mit/micropython/dist/tests/basics/unboundlocal.py N othersrc/external/mit/micropython/dist/tests/basics/unpack1.py N othersrc/external/mit/micropython/dist/tests/basics/while1.py N othersrc/external/mit/micropython/dist/tests/basics/while_cond.py N othersrc/external/mit/micropython/dist/tests/basics/while_nest_exc.py N othersrc/external/mit/micropython/dist/tests/basics/with1.py N othersrc/external/mit/micropython/dist/tests/basics/with_break.py N othersrc/external/mit/micropython/dist/tests/basics/with_continue.py N othersrc/external/mit/micropython/dist/tests/basics/with_return.py N othersrc/external/mit/micropython/dist/tests/bench/bench.py N othersrc/external/mit/micropython/dist/tests/bench/arrayop-3-bytearray_inplace.py N othersrc/external/mit/micropython/dist/tests/bench/arrayop-1-list_inplace.py N othersrc/external/mit/micropython/dist/tests/bench/arrayop-2-list_map.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-7-bytearray_bound.py N othersrc/external/mit/micropython/dist/tests/bench/arrayop-4-bytearray_map.py N othersrc/external/mit/micropython/dist/tests/bench/bytebuf-2-join_map_bytes.py N othersrc/external/mit/micropython/dist/tests/bench/bytebuf-1-inplace.py N othersrc/external/mit/micropython/dist/tests/bench/bytebuf-3-bytarray_map.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-2-list_unbound.py N othersrc/external/mit/micropython/dist/tests/bench/loop_count-1-range.py N othersrc/external/mit/micropython/dist/tests/bench/func_args-2-pos_default_2_of_3.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-1-list_bound.py N othersrc/external/mit/micropython/dist/tests/bench/func_args-1.1-pos_1.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-3-tuple_bound.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-4-tuple_unbound.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-5-bytes_bound.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-6-bytes_unbound.py N othersrc/external/mit/micropython/dist/tests/bench/from_iter-8-bytearray_unbound.py N othersrc/external/mit/micropython/dist/tests/bench/func_args-1.2-pos_3.py N othersrc/external/mit/micropython/dist/tests/bench/func_builtin-1-enum_pos.py N othersrc/external/mit/micropython/dist/tests/bench/func_args-3.1-kw_1.py N othersrc/external/mit/micropython/dist/tests/bench/func_args-3.2-kw_3.py N othersrc/external/mit/micropython/dist/tests/bench/loop_count-4-while_down_gt.py N othersrc/external/mit/micropython/dist/tests/bench/func_builtin-2-enum_kw.py N othersrc/external/mit/micropython/dist/tests/bench/funcall-1-inline.py N othersrc/external/mit/micropython/dist/tests/bench/funcall-2-funcall.py N othersrc/external/mit/micropython/dist/tests/bench/funcall-3-funcall-local.py N othersrc/external/mit/micropython/dist/tests/bench/loop_count-2-range_iter.py N othersrc/external/mit/micropython/dist/tests/bench/loop_count-3-while_up.py N othersrc/external/mit/micropython/dist/tests/bench/loop_count-5-while_down_ne.py N othersrc/external/mit/micropython/dist/tests/bench/var-1-constant.py N othersrc/external/mit/micropython/dist/tests/bench/var-2-global.py N othersrc/external/mit/micropython/dist/tests/bench/var-3-local.py N othersrc/external/mit/micropython/dist/tests/bench/var-4-arg.py N othersrc/external/mit/micropython/dist/tests/bench/loop_count-5.1-while_down_ne_localvar.py N othersrc/external/mit/micropython/dist/tests/bench/var-5-class-attr.py N othersrc/external/mit/micropython/dist/tests/bench/var-6-instance-attr.py N othersrc/external/mit/micropython/dist/tests/bench/var-6.1-instance-attr-5.py N othersrc/external/mit/micropython/dist/tests/bench/var-7-instance-meth.py N othersrc/external/mit/micropython/dist/tests/bench/var-8-namedtuple-1st.py N othersrc/external/mit/micropython/dist/tests/bench/var-8.1-namedtuple-5th.py N othersrc/external/mit/micropython/dist/tests/cmdline/repl_emacs_keys.py.exp N othersrc/external/mit/micropython/dist/tests/cmdline/cmd_showbc.py.exp N othersrc/external/mit/micropython/dist/tests/cmdline/cmd_showbc.py N othersrc/external/mit/micropython/dist/tests/cmdline/cmd_verbose.py.exp N othersrc/external/mit/micropython/dist/tests/cmdline/cmd_verbose.py N othersrc/external/mit/micropython/dist/tests/cmdline/repl_basic.py.exp N othersrc/external/mit/micropython/dist/tests/cmdline/repl_basic.py N othersrc/external/mit/micropython/dist/tests/cmdline/repl_cont.py.exp N othersrc/external/mit/micropython/dist/tests/cmdline/repl_cont.py N othersrc/external/mit/micropython/dist/tests/cmdline/repl_emacs_keys.py N othersrc/external/mit/micropython/dist/tests/extmod/machine_mem.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/machine1.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/machine1.py N othersrc/external/mit/micropython/dist/tests/extmod/ubinascii_a2b_base64.py N othersrc/external/mit/micropython/dist/tests/extmod/machine_mem.py N othersrc/external/mit/micropython/dist/tests/extmod/time_ms_us.py N othersrc/external/mit/micropython/dist/tests/extmod/sha256.py N othersrc/external/mit/micropython/dist/tests/extmod/ubinascii_b2a_base64.py N othersrc/external/mit/micropython/dist/tests/extmod/time_ms_us.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/ubinascii_unhexlify.py N othersrc/external/mit/micropython/dist/tests/extmod/ubinascii_hexlify.py N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_bytearray.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_bytearray.py N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_le.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_le.py N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_native_le.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_native_le.py N othersrc/external/mit/micropython/dist/tests/extmod/ure1.py N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_ptr_native_le.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_ptr_le.py N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_ptr_le.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_ptr_native_le.py N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_sizeof.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_sizeof.py N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_sizeof_native.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/uctypes_sizeof_native.py N othersrc/external/mit/micropython/dist/tests/extmod/ujson_dumps.py N othersrc/external/mit/micropython/dist/tests/extmod/uheapq1.py N othersrc/external/mit/micropython/dist/tests/extmod/ujson_dumps_extra.py.exp N othersrc/external/mit/micropython/dist/tests/extmod/ujson_dumps_extra.py N othersrc/external/mit/micropython/dist/tests/extmod/ure_namedclass.py N othersrc/external/mit/micropython/dist/tests/extmod/ujson_dumps_float.py N othersrc/external/mit/micropython/dist/tests/extmod/ujson_loads.py N othersrc/external/mit/micropython/dist/tests/extmod/ujson_loads_float.py N othersrc/external/mit/micropython/dist/tests/extmod/ure_error.py N othersrc/external/mit/micropython/dist/tests/extmod/ure_group.py N othersrc/external/mit/micropython/dist/tests/extmod/zlibd_decompress.py N othersrc/external/mit/micropython/dist/tests/extmod/ure_split.py N othersrc/external/mit/micropython/dist/tests/feature_check/native_check.py.exp N othersrc/external/mit/micropython/dist/tests/feature_check/byteorder.py N othersrc/external/mit/micropython/dist/tests/feature_check/README N othersrc/external/mit/micropython/dist/tests/feature_check/repl_emacs_check.py.exp N othersrc/external/mit/micropython/dist/tests/feature_check/byteorder.py.exp N othersrc/external/mit/micropython/dist/tests/feature_check/complex.py N othersrc/external/mit/micropython/dist/tests/feature_check/complex.py.exp N othersrc/external/mit/micropython/dist/tests/feature_check/native_check.py N othersrc/external/mit/micropython/dist/tests/feature_check/repl_emacs_check.py N othersrc/external/mit/micropython/dist/tests/float/list_index.py N othersrc/external/mit/micropython/dist/tests/float/builtin_float_minmax.py N othersrc/external/mit/micropython/dist/tests/float/array_construct.py N othersrc/external/mit/micropython/dist/tests/float/builtin_float_round.py N othersrc/external/mit/micropython/dist/tests/float/bytearray_construct.py N othersrc/external/mit/micropython/dist/tests/float/bytes_construct.py N othersrc/external/mit/micropython/dist/tests/float/cmath_fun.py N othersrc/external/mit/micropython/dist/tests/float/complex1.py N othersrc/external/mit/micropython/dist/tests/float/float1.py N othersrc/external/mit/micropython/dist/tests/float/float2int.py N othersrc/external/mit/micropython/dist/tests/float/float2int_doubleprec.py N othersrc/external/mit/micropython/dist/tests/float/float_array.py N othersrc/external/mit/micropython/dist/tests/float/float_divmod.py N othersrc/external/mit/micropython/dist/tests/float/float_divmod_relaxed.py N othersrc/external/mit/micropython/dist/tests/float/float_struct.py N othersrc/external/mit/micropython/dist/tests/float/int_big_float.py N othersrc/external/mit/micropython/dist/tests/float/int_divzero.py N othersrc/external/mit/micropython/dist/tests/float/int_power.py N othersrc/external/mit/micropython/dist/tests/float/string_format_modulo.py N othersrc/external/mit/micropython/dist/tests/float/math_fun.py N othersrc/external/mit/micropython/dist/tests/float/math_fun_bool.py N othersrc/external/mit/micropython/dist/tests/float/math_fun_special.py N othersrc/external/mit/micropython/dist/tests/float/string_format.py N othersrc/external/mit/micropython/dist/tests/float/true_value.py N othersrc/external/mit/micropython/dist/tests/float/types.py N othersrc/external/mit/micropython/dist/tests/import/gen_context.py N othersrc/external/mit/micropython/dist/tests/import/gen_context2.py N othersrc/external/mit/micropython/dist/tests/import/import1a.py N othersrc/external/mit/micropython/dist/tests/import/import1b.py N othersrc/external/mit/micropython/dist/tests/import/import2a.py N othersrc/external/mit/micropython/dist/tests/import/import3a.py N othersrc/external/mit/micropython/dist/tests/import/import_file.py N othersrc/external/mit/micropython/dist/tests/import/import_pkg1.py N othersrc/external/mit/micropython/dist/tests/import/import_pkg2.py N othersrc/external/mit/micropython/dist/tests/import/import_pkg3.py N othersrc/external/mit/micropython/dist/tests/import/import_pkg4.py N othersrc/external/mit/micropython/dist/tests/import/import_pkg5.py N othersrc/external/mit/micropython/dist/tests/import/import_pkg6.py N othersrc/external/mit/micropython/dist/tests/import/rel_import_inv.py N othersrc/external/mit/micropython/dist/tests/import/try_module.py N othersrc/external/mit/micropython/dist/tests/import/pkg/__init__.py N othersrc/external/mit/micropython/dist/tests/import/pkg/mod.py N othersrc/external/mit/micropython/dist/tests/import/pkg2/__init__.py N othersrc/external/mit/micropython/dist/tests/import/pkg2/mod1.py N othersrc/external/mit/micropython/dist/tests/import/pkg2/mod2.py N othersrc/external/mit/micropython/dist/tests/import/pkg3/__init__.py N othersrc/external/mit/micropython/dist/tests/import/pkg3/mod1.py N othersrc/external/mit/micropython/dist/tests/import/pkg3/mod2.py N othersrc/external/mit/micropython/dist/tests/import/pkg3/subpkg1/__init__.py N othersrc/external/mit/micropython/dist/tests/import/pkg3/subpkg1/mod1.py N othersrc/external/mit/micropython/dist/tests/import/pkg6/__init__.py N othersrc/external/mit/micropython/dist/tests/import/pkg6/x/__init__.py N othersrc/external/mit/micropython/dist/tests/import/pkg6/x/y.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpaddsub.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmbcc.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmbcc.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmbitops.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmbitops.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmblbx.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmblbx.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmdiv.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmdiv.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpldrstr.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpaddsub.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpcmp.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpcmp.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpmuldiv.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpldrstr.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmpushpop.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpmuldiv.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmit.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmit.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpsqrt.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmfpsqrt.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmspecialregs.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmpushpop.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmshift.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmshift.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmspecialregs.py N othersrc/external/mit/micropython/dist/tests/inlineasm/asmsum.py.exp N othersrc/external/mit/micropython/dist/tests/inlineasm/asmsum.py N othersrc/external/mit/micropython/dist/tests/io/file_iter.py N othersrc/external/mit/micropython/dist/tests/io/argv.py N othersrc/external/mit/micropython/dist/tests/io/file_seek.py N othersrc/external/mit/micropython/dist/tests/io/file1.py N othersrc/external/mit/micropython/dist/tests/io/file_readinto_len.py.exp N othersrc/external/mit/micropython/dist/tests/io/file_long_read.py N othersrc/external/mit/micropython/dist/tests/io/file_long_read2.py N othersrc/external/mit/micropython/dist/tests/io/file_long_read3.py N othersrc/external/mit/micropython/dist/tests/io/file_readinto.py N othersrc/external/mit/micropython/dist/tests/io/file_readinto_len.py N othersrc/external/mit/micropython/dist/tests/io/file_readline.py N othersrc/external/mit/micropython/dist/tests/io/file_stdio.py N othersrc/external/mit/micropython/dist/tests/io/file_with.py N othersrc/external/mit/micropython/dist/tests/io/open_append.py N othersrc/external/mit/micropython/dist/tests/io/stringio1.py N othersrc/external/mit/micropython/dist/tests/io/stringio_with.py N othersrc/external/mit/micropython/dist/tests/io/data/bigfile1 N othersrc/external/mit/micropython/dist/tests/io/data/file1 N othersrc/external/mit/micropython/dist/tests/io/data/file2 N othersrc/external/mit/micropython/dist/tests/jni/object.py.exp N othersrc/external/mit/micropython/dist/tests/jni/list.py.exp N othersrc/external/mit/micropython/dist/tests/jni/README N othersrc/external/mit/micropython/dist/tests/jni/list.py N othersrc/external/mit/micropython/dist/tests/jni/system_out.py.exp N othersrc/external/mit/micropython/dist/tests/jni/object.py N othersrc/external/mit/micropython/dist/tests/jni/system_out.py N othersrc/external/mit/micropython/dist/tests/micropython/const_error.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/const.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/const.py N othersrc/external/mit/micropython/dist/tests/micropython/decorator_error.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/const_error.py N othersrc/external/mit/micropython/dist/tests/micropython/decorator.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/decorator.py N othersrc/external/mit/micropython/dist/tests/micropython/native_closure.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/decorator_error.py N othersrc/external/mit/micropython/dist/tests/micropython/heapalloc.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/heapalloc.py N othersrc/external/mit/micropython/dist/tests/micropython/meminfo.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/meminfo.py N othersrc/external/mit/micropython/dist/tests/micropython/memstats.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/memstats.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_arith.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/native_closure.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_misc.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/native_const.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_misc.py N othersrc/external/mit/micropython/dist/tests/micropython/native_const.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/native_misc.py N othersrc/external/mit/micropython/dist/tests/micropython/native_misc.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_args.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_args.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_arith.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_comp.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_comp.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_comp_imm.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_comp_imm.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_multi_comp.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_binop_multi_comp.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_cond.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_cond.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_error.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_error.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr16_load.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr16_load.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr16_store.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr16_store.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr32_load.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr32_load.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr32_store.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr32_store.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr8_load.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr8_load.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr8_store.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_ptr8_store.py N othersrc/external/mit/micropython/dist/tests/micropython/viper_subscr.py.exp N othersrc/external/mit/micropython/dist/tests/micropython/viper_subscr.py N othersrc/external/mit/micropython/dist/tests/misc/non_compliant_lexer.py N othersrc/external/mit/micropython/dist/tests/misc/non_compliant.py N othersrc/external/mit/micropython/dist/tests/misc/features.py N othersrc/external/mit/micropython/dist/tests/misc/non_compliant_lexer.py.exp N othersrc/external/mit/micropython/dist/tests/misc/non_compliant.py.exp N othersrc/external/mit/micropython/dist/tests/misc/recursive_data.py.exp N othersrc/external/mit/micropython/dist/tests/misc/print_exception.py N othersrc/external/mit/micropython/dist/tests/misc/recursion.py N othersrc/external/mit/micropython/dist/tests/misc/recursive_data.py N othersrc/external/mit/micropython/dist/tests/misc/recursive_iternext.py.exp N othersrc/external/mit/micropython/dist/tests/misc/recursive_iternext.py N othersrc/external/mit/micropython/dist/tests/misc/sys_exc_info.py N othersrc/external/mit/micropython/dist/tests/misc/rge_sm.py N othersrc/external/mit/micropython/dist/tests/pyb/extint.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/accel.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/accel.py N othersrc/external/mit/micropython/dist/tests/pyb/adc.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/adc.py N othersrc/external/mit/micropython/dist/tests/pyb/can.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/can.py N othersrc/external/mit/micropython/dist/tests/pyb/dac.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/dac.py N othersrc/external/mit/micropython/dist/tests/pyb/halerror.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/extint.py N othersrc/external/mit/micropython/dist/tests/pyb/switch.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/halerror.py N othersrc/external/mit/micropython/dist/tests/pyb/i2c.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/i2c.py N othersrc/external/mit/micropython/dist/tests/pyb/irq.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/led.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/pin.py N othersrc/external/mit/micropython/dist/tests/pyb/irq.py N othersrc/external/mit/micropython/dist/tests/pyb/modtime.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/led.py N othersrc/external/mit/micropython/dist/tests/pyb/timer_callback.py N othersrc/external/mit/micropython/dist/tests/pyb/modtime.py N othersrc/external/mit/micropython/dist/tests/pyb/pin.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/pyb1.py N othersrc/external/mit/micropython/dist/tests/pyb/pyb1.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/rtc.py N othersrc/external/mit/micropython/dist/tests/pyb/rtc.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/servo.py N othersrc/external/mit/micropython/dist/tests/pyb/servo.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/spi.py N othersrc/external/mit/micropython/dist/tests/pyb/spi.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/switch.py N othersrc/external/mit/micropython/dist/tests/pyb/timer.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/timer.py N othersrc/external/mit/micropython/dist/tests/pyb/uart.py N othersrc/external/mit/micropython/dist/tests/pyb/timer_callback.py.exp N othersrc/external/mit/micropython/dist/tests/pyb/uart.py.exp N othersrc/external/mit/micropython/dist/tests/pybnative/for.py.exp N othersrc/external/mit/micropython/dist/tests/pybnative/for.py N othersrc/external/mit/micropython/dist/tests/pybnative/while.py.exp N othersrc/external/mit/micropython/dist/tests/pybnative/while.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_chr.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode.py N othersrc/external/mit/micropython/dist/tests/unicode/file1.py N othersrc/external/mit/micropython/dist/tests/unicode/file2.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_str_format.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_id.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_index.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_iter.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_ord.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_pos.py N othersrc/external/mit/micropython/dist/tests/unicode/unicode_str_modulo.py N othersrc/external/mit/micropython/dist/tests/unicode/data/utf-8_1.txt N othersrc/external/mit/micropython/dist/tests/unicode/data/utf-8_2.txt N othersrc/external/mit/micropython/dist/tests/unix/extra_coverage.py.exp N othersrc/external/mit/micropython/dist/tests/unix/extra_coverage.py N othersrc/external/mit/micropython/dist/tests/unix/ffi_callback.py.exp N othersrc/external/mit/micropython/dist/tests/unix/ffi_callback.py N othersrc/external/mit/micropython/dist/tests/unix/ffi_float.py.exp N othersrc/external/mit/micropython/dist/tests/unix/ffi_float.py N othersrc/external/mit/micropython/dist/tests/unix/ffi_float2.py.exp N othersrc/external/mit/micropython/dist/tests/unix/ffi_float2.py N othersrc/external/mit/micropython/dist/tests/wipy/modwipy.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/adc.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/adc.py N othersrc/external/mit/micropython/dist/tests/wipy/i2c.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/i2c.py N othersrc/external/mit/micropython/dist/tests/wipy/pin_irq.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/modwipy.py N othersrc/external/mit/micropython/dist/tests/wipy/os.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/os.py N othersrc/external/mit/micropython/dist/tests/wipy/pin.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/pin.py N othersrc/external/mit/micropython/dist/tests/wipy/time.py N othersrc/external/mit/micropython/dist/tests/wipy/pin_irq.py N othersrc/external/mit/micropython/dist/tests/wipy/uart_irq.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/rtc.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/sd.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/rtc.py N othersrc/external/mit/micropython/dist/tests/wipy/uart.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/sd.py N othersrc/external/mit/micropython/dist/tests/wipy/spi.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/spi.py N othersrc/external/mit/micropython/dist/tests/wipy/time.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/uart.py N othersrc/external/mit/micropython/dist/tests/wipy/uart_irq.py N othersrc/external/mit/micropython/dist/tests/wipy/wdt.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/wdt.py N othersrc/external/mit/micropython/dist/tests/wipy/reset/reset.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/reset/reset.py N othersrc/external/mit/micropython/dist/tests/wipy/skipped/rtc_irq.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/skipped/rtc_irq.py N othersrc/external/mit/micropython/dist/tests/wipy/wlan/machine.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/wlan/machine.py N othersrc/external/mit/micropython/dist/tests/wipy/wlan/server.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/wlan/server.py N othersrc/external/mit/micropython/dist/tests/wipy/wlan/wlan.py.exp N othersrc/external/mit/micropython/dist/tests/wipy/wlan/wlan.py N othersrc/external/mit/micropython/dist/tools/file2h.py N othersrc/external/mit/micropython/dist/tools/cc1 N othersrc/external/mit/micropython/dist/tools/bootstrap_upip.sh N othersrc/external/mit/micropython/dist/tools/.gitattributes N othersrc/external/mit/micropython/dist/tools/.gitignore N othersrc/external/mit/micropython/dist/tools/dfu.py N othersrc/external/mit/micropython/dist/tools/build-stm-latest.sh N othersrc/external/mit/micropython/dist/tools/gen-changelog.sh N othersrc/external/mit/micropython/dist/tools/codestats.sh N othersrc/external/mit/micropython/dist/tools/insert-usb-ids.py N othersrc/external/mit/micropython/dist/tools/gendoc.py N othersrc/external/mit/micropython/dist/tools/tinytest-codegen.py N othersrc/external/mit/micropython/dist/tools/make-frozen.py N othersrc/external/mit/micropython/dist/tools/pip-micropython N othersrc/external/mit/micropython/dist/tools/pyboard.py N othersrc/external/mit/micropython/dist/tools/pydfu.py N othersrc/external/mit/micropython/dist/tools/micropython-upip-0.6.3.tar.gz N othersrc/external/mit/micropython/dist/tools/tinytest/tinytest_macros.h N othersrc/external/mit/micropython/dist/tools/tinytest/tinytest.c N othersrc/external/mit/micropython/dist/tools/tinytest/README N othersrc/external/mit/micropython/dist/tools/tinytest/tinytest.h N othersrc/external/mit/micropython/dist/unix/mpconfigport_fast.h N othersrc/external/mit/micropython/dist/unix/mpconfigport.h N othersrc/external/mit/micropython/dist/unix/.gitignore N othersrc/external/mit/micropython/dist/unix/Makefile N othersrc/external/mit/micropython/dist/unix/alloc.c N othersrc/external/mit/micropython/dist/unix/coverage.c N othersrc/external/mit/micropython/dist/unix/file.c N othersrc/external/mit/micropython/dist/unix/gccollect.c N othersrc/external/mit/micropython/dist/unix/input.c N othersrc/external/mit/micropython/dist/unix/input.h N othersrc/external/mit/micropython/dist/unix/main.c N othersrc/external/mit/micropython/dist/unix/modffi.c N othersrc/external/mit/micropython/dist/unix/modjni.c N othersrc/external/mit/micropython/dist/unix/modmachine.c N othersrc/external/mit/micropython/dist/unix/modos.c N othersrc/external/mit/micropython/dist/unix/modsocket.c N othersrc/external/mit/micropython/dist/unix/modtermios.c N othersrc/external/mit/micropython/dist/unix/modtime.c N othersrc/external/mit/micropython/dist/unix/moduselect.c N othersrc/external/mit/micropython/dist/unix/mpconfigport.mk N othersrc/external/mit/micropython/dist/unix/qstrdefsport.h N othersrc/external/mit/micropython/dist/unix/mphalport.h N othersrc/external/mit/micropython/dist/unix/mpconfigport_freedos.h N othersrc/external/mit/micropython/dist/unix/mpconfigport_minimal.h N othersrc/external/mit/micropython/dist/unix/unix_mphal.c N othersrc/external/mit/micropython/dist/windows/sleep.c N othersrc/external/mit/micropython/dist/windows/micropython.vcxproj N othersrc/external/mit/micropython/dist/windows/.appveyor.yml N othersrc/external/mit/micropython/dist/windows/.gitignore N othersrc/external/mit/micropython/dist/windows/Makefile N othersrc/external/mit/micropython/dist/windows/README N othersrc/external/mit/micropython/dist/windows/init.c N othersrc/external/mit/micropython/dist/windows/init.h N othersrc/external/mit/micropython/dist/windows/mpconfigport.h N othersrc/external/mit/micropython/dist/windows/mpconfigport.mk N othersrc/external/mit/micropython/dist/windows/windows_mphal.c N othersrc/external/mit/micropython/dist/windows/realpath.c N othersrc/external/mit/micropython/dist/windows/realpath.h N othersrc/external/mit/micropython/dist/windows/sleep.h N othersrc/external/mit/micropython/dist/windows/windows_mphal.h N othersrc/external/mit/micropython/dist/windows/msvc/unistd.h N othersrc/external/mit/micropython/dist/windows/msvc/genhdr.targets N othersrc/external/mit/micropython/dist/windows/msvc/common.props N othersrc/external/mit/micropython/dist/windows/msvc/debug.props N othersrc/external/mit/micropython/dist/windows/msvc/dirent.c N othersrc/external/mit/micropython/dist/windows/msvc/dirent.h N othersrc/external/mit/micropython/dist/windows/msvc/gettimeofday.c N othersrc/external/mit/micropython/dist/windows/msvc/paths.props N othersrc/external/mit/micropython/dist/windows/msvc/release.props N othersrc/external/mit/micropython/dist/windows/msvc/sources.props N othersrc/external/mit/micropython/dist/windows/msvc/sys/time.h No conflicts created by this import