stm32: Allow to build with threading with the GIL disabled.

This commit is contained in:
Damien George 2019-03-08 22:29:54 +11:00
parent 1e23a29c8a
commit e4ac104b7f
2 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,7 @@
#include <stdio.h>
#include <stdint.h>
#include "py/obj.h"
#include "py/mpstate.h"
#include "py/gc.h"
#include "py/mpthread.h"
#include "lib/utils/gchelper.h"

View File

@ -26,6 +26,7 @@
#include <stdio.h>
#include "py/mpstate.h"
#include "py/gc.h"
#include "py/mpthread.h"
#include "gccollect.h"