File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 4
4
MICROPY_FORCE_32BIT = 0
5
5
6
6
# This variable can take the following values:
7
- # 0 - no readline, just simple input
7
+ # 0 - no readline, just simple stdin input
8
8
# 1 - use MicroPython version of readline
9
9
MICROPY_USE_READLINE = 1
10
10
@@ -23,9 +23,15 @@ MICROPY_PY_SOCKET = 1
23
23
# ffi module requires libffi (libffi-dev Debian package)
24
24
MICROPY_PY_FFI = 1
25
25
26
- # ussl module requires axtls
26
+ # ussl module requires one of the TLS libraries below
27
27
MICROPY_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.
28
31
MICROPY_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.
29
35
MICROPY_SSL_MBEDTLS = 0
30
36
31
37
# jni module requires JVM/JNI
You can’t perform that action at this time.
0 commit comments