fix windows mpy-cross builds; tnx @jepler
This commit is contained in:
parent
c823b9b2f6
commit
2f81f36c41
|
@ -29,14 +29,14 @@
|
||||||
#include "py/pairheap.h"
|
#include "py/pairheap.h"
|
||||||
#include "py/mphal.h"
|
#include "py/mphal.h"
|
||||||
|
|
||||||
|
#if MICROPY_PY_UASYNCIO
|
||||||
|
|
||||||
#if CIRCUITPY && !(defined(__unix__) || defined(__APPLE__))
|
#if CIRCUITPY && !(defined(__unix__) || defined(__APPLE__))
|
||||||
#include "shared-bindings/supervisor/__init__.h"
|
#include "shared-bindings/supervisor/__init__.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "supervisor/shared/translate/translate.h"
|
#include "supervisor/shared/translate/translate.h"
|
||||||
|
|
||||||
#if MICROPY_PY_UASYNCIO
|
|
||||||
|
|
||||||
// Used when task cannot be guaranteed to be non-NULL.
|
// Used when task cannot be guaranteed to be non-NULL.
|
||||||
#define TASK_PAIRHEAP(task) ((task) ? &(task)->pairheap : NULL)
|
#define TASK_PAIRHEAP(task) ((task) ? &(task)->pairheap : NULL)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue