Damien George
4b71c056ef
moduzlib: Fix fn prototype and some code style; use it in stmhal port.
10 years ago
Damien George
29f5682621
Merge pull request #904 from pfalcon/moduzlib
Module "uzlib" - based on similarly named library
10 years ago
Paul Sokolovsky
bfb6af857a
moduzlib: Import uzlib v1.1.
https://github.com/pfalcon/uzlib
10 years ago
Paul Sokolovsky
34162872b1
moduzlib: Integrate into the system.
10 years ago
Paul Sokolovsky
426bb58b23
moduzlib: New zlib-like module, based on uzlib.
10 years ago
Damien George
50062587c7
stmhal: Oops: rename mod files in Makefile.
10 years ago
Damien George
136b5cbd76
stmhal: Rename module files to keep consistency with module name.
10 years ago
Damien George
0107e90328
stmhal: Enable module weak links.
os, time, select modules are now prefixed with u, but are still
available (via weak links) as their original names.
ure and ujson now available as re and json via weak links.
10 years ago
Damien George
c14a81662c
py: Add module weak link support.
With this patch a port can enable module weak link support and provide
a dict of qstr->module mapping. This mapping is looked up only if an
import fails to find the requested module in the filesystem.
This allows to have the builtin module named, eg, usocket, and provide
a weak link of "socket" to the same module, but this weak link can be
overridden if a file by the name "socket.py" is found in the import
path.
10 years ago
Damien George
3c34d4140d
py: Fix x86 viper code generation, mem8 <-> mem16 for load.
10 years ago
Damien George
91cfd414c0
py: Implement native load for viper.
Viper can now do: ptr8(buf)[0], which loads a byte from a buffer using
machine instructions.
10 years ago
Damien George
1ef2348df0
py: Implement and,or,xor native ops for viper.
10 years ago
Paul Sokolovsky
1606607bd4
modure: Make sure that re1.5 compiled in only of modure itself is enabled.
This is achieved by including re1.5 *.c files straight from modure.c .
10 years ago
Paul Sokolovsky
457c0a606c
modure: Upgrade re1.5 to 0.5.1
Changes include:
regexp.h: Add double-include protection.
10 years ago
Damien George
fbf976c9aa
Merge pull request #902 from pfalcon/readme-unix
README: Update "unix" section with more info/details.
10 years ago
Damien George
37671c9a97
Merge branch 'pfalcon-modure'
10 years ago
Damien George
dd5ee9ff9c
stmhal: Enable ure module (tests pass on pyboard).
10 years ago
Damien George
26fa3e30ec
Merge branch 'modure' of https://github.com/pfalcon/micropython into pfalcon-modure
10 years ago
Paul Sokolovsky
945df4e564
README: Update "unix" section with more info/details.
10 years ago
Damien George
1ce916aefd
Merge pull request #900 from dhylands/comp-deadtime
Add support for complimentary channel output and deadtime.
10 years ago
Paul Sokolovsky
c36c75c4dc
unix: Update comment MICROPY_GCREGS_SETJMP (untested -> undertested).
10 years ago
Paul Sokolovsky
6c2ab5c315
unix: Add comment about needed dependencies for MICROPY_FORCE_32BIT.
10 years ago
Paul Sokolovsky
f7bcce0552
modure: Basic tests.
10 years ago
Paul Sokolovsky
5edbadefc1
modure: Import needed files from re1.5 v0.5.
https://github.com/pfalcon/re1.5
10 years ago
Paul Sokolovsky
c71e045165
modure: Initial module, using re1.5 (which is based on re1 codebase).
https://github.com/pfalcon/re1.5
10 years ago
Dave Hylands
1c795445b3
Add support for complimentary channel output and deadtime.
This patch enables output on the complimentary channels (TIMx_CHyN).
For timers 1 and 8, deadtime can also be inserted when the channels
transition. For the pyboard, TIM8_CH1/CH1N and TIM8_CH2/CH2N can
take advantage of this.
10 years ago
Damien George
9b6617ea8b
stmhal: Add pyb.stop() and pyb.standby() functions.
10 years ago
Damien George
cc5b4a2653
Merge pull request #899 from pfalcon/usocket-rename
unix: Rename "microsocket" module to "usocket".
10 years ago
Paul Sokolovsky
23b3b04072
unix: Rename "microsocket" module to "usocket".
Per new conventions, we'd like to consistently use "u*" naming conventions
for modules which don't offer complete CPython compatibility, while offer
subset or similar API.
10 years ago
Paul Sokolovsky
a2d8f98a7e
examples: Rename unix socket examples to have more precise naming (http).
10 years ago
Damien George
1e49b151a7
Merge branch 'master' of github.com:micropython/micropython
10 years ago
Damien George
f0f964807e
Merge branch 'dhylands-lexer-crash'
10 years ago
Damien George
9bf5f2857d
py: Add further checks for failed malloc in lexer init functions.
10 years ago
Damien George
a8202762f0
Merge branch 'lexer-crash' of https://github.com/dhylands/micropython into dhylands-lexer-crash
10 years ago
Damien George
40e4c777a1
Merge pull request #897 from tomvonclef/master
Updating README.md. The Unix build requires pkg-config for FFI.
10 years ago
Damien George
7989b07637
Merge branch 'dhylands-memory-error'
10 years ago
Damien George
4091445612
py: Add #if guard around gc-specific code.
10 years ago
Dave Hylands
e20cbbec73
Make lexer fail gracefully when memory can't be allocated.
10 years ago
Tom von Clef
2090a98e80
Updating README.md to include the fact that the Unix build requires pkg-config to build the FFI module.
10 years ago
Dave Hylands
3556e45711
Allow real memory errors (from locked gc) to be reported with traceback.
10 years ago
Paul Sokolovsky
67f25dfe6f
travis: Install realpath, required for teensy build.
10 years ago
Paul Sokolovsky
5d328cbeb9
windows: mingw32 gcc doesn't define endianness macros, so just assume little.
Specifically, at least Ubuntu's i586-mingw32msvc-gcc doesn't supply
__LITTLE_ENDIAN__ and friends. And as it's safe enough to assume that
Windows is only little-endian, then it's defined unconditionally,
instead of duplicating detection logic in py/mpconfig.h (or adding
windows-specific defines to it).
10 years ago
Paul Sokolovsky
5dc8f9b28a
tests: Skip ffi_float.py if module ffi is not available.
10 years ago
Paul Sokolovsky
9aeec0e3a3
tests: Add missing "import sys".
10 years ago
Damien George
f53c343363
tests: Force skip of LE test on non-LE arch; improve run-tests-exp.sh.
10 years ago
Damien George
9c6f7378f7
tests: Make run-tests-exp.sh skip tests that fail due to invalid decorator.
Should address issue #856 .
10 years ago
Damien George
f32498fe04
py: Extra autodetect for little endianness using __LITTLE_ENDIAN__.
10 years ago
Damien George
fec70ad369
stmhal: Remove long-obsolete pybwlan.[ch] files from old CC3k driver.
10 years ago
Damien George
9336ee320a
py: Make mp_binary_set_val work on big endian machine.
10 years ago
Damien George
fcdb239815
py: Make int.to_bytes work on big endian machine.
Partly addresses issue #856 .
10 years ago