File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44MICROPY_FORCE_32BIT = 0
55
66# This variable can take the following values:
7- # 0 - no readline, just simple input
7+ # 0 - no readline, just simple stdin input
88# 1 - use MicroPython version of readline
99MICROPY_USE_READLINE = 1
1010
@@ -23,9 +23,15 @@ MICROPY_PY_SOCKET = 1
2323# ffi module requires libffi (libffi-dev Debian package)
2424MICROPY_PY_FFI = 1
2525
26- # ussl module requires axtls
26+ # ussl module requires one of the TLS libraries below
2727MICROPY_PY_USSL = 1
28+ # axTLS has minimal size and fully integrated with MicroPython, but
29+ # implements only a subset of modern TLS functionality, so may have
30+ # problems with some servers.
2831MICROPY_SSL_AXTLS = 1
32+ # mbedTLS is more up to date and complete implementation, but also
33+ # more bloated. Configuring and building of mbedTLS should be done
34+ # outside of MicroPython, it can just link with mbedTLS library.
2935MICROPY_SSL_MBEDTLS = 0
3036
3137# jni module requires JVM/JNI
You can’t perform that action at this time.
0 commit comments