nrf5/drivers: Adding defines to exclude implementation of draw.c module if not enabled.
This commit is contained in:
parent
b609ce85b5
commit
13161d0eac
@ -33,6 +33,8 @@
|
|||||||
#include "moddisplay.h"
|
#include "moddisplay.h"
|
||||||
#include "font_petme128_8x8.h"
|
#include "font_petme128_8x8.h"
|
||||||
|
|
||||||
|
#if MICROPY_PY_DISPLAY_GRAPHICS
|
||||||
|
|
||||||
/// \method circle(display, radius, x, y, color, [fill])
|
/// \method circle(display, radius, x, y, color, [fill])
|
||||||
/// Draw a circle in the display framebuffer.
|
/// Draw a circle in the display framebuffer.
|
||||||
STATIC mp_obj_t draw_circle(mp_uint_t n_args, const mp_obj_t *args) {
|
STATIC mp_obj_t draw_circle(mp_uint_t n_args, const mp_obj_t *args) {
|
||||||
@ -183,3 +185,5 @@ const mp_obj_module_t graphics_module = {
|
|||||||
.base = { &mp_type_module },
|
.base = { &mp_type_module },
|
||||||
.globals = (mp_obj_dict_t*)&graphics_globals_dict,
|
.globals = (mp_obj_dict_t*)&graphics_globals_dict,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // MICROPY_PY_DISPLAY_GRAPHICS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user