diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-27 18:04:11 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-27 18:04:11 +0200 |
commit | eb9a3ec6543f92356856f88c183a003791e8f7b6 (patch) | |
tree | 549b1426593816181a6d936009b74231554970ee /cc3200/mptask.c | |
parent | 6143f635608d30461a9e5e33de3c392a87a0e980 (diff) | |
download | micropython-eb9a3ec6543f92356856f88c183a003791e8f7b6.tar.gz micropython-eb9a3ec6543f92356856f88c183a003791e8f7b6.zip |
cc3200: Disable uheapq and uhashlib.
Those two are rarely used features and better to have the extra heap.
Diffstat (limited to 'cc3200/mptask.c')
-rw-r--r-- | cc3200/mptask.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/mptask.c b/cc3200/mptask.c index f8060f440b..180ad03a80 100644 --- a/cc3200/mptask.c +++ b/cc3200/mptask.c @@ -267,7 +267,7 @@ STATIC void mptask_pre_init (void) { // this one allocates memory for the socket semaphore modusocket_pre_init(); - CRYPTOHASH_Init(); + //CRYPTOHASH_Init(); #ifdef DEBUG ASSERT (OSI_OK == osi_TaskCreate(TASK_Servers, |