[python/turtle] Use a dedicated folder

This commit is contained in:
Romain Goyet
2018-11-16 10:31:16 +01:00
parent 82f0b7183f
commit 22a39a2fd6
9 changed files with 140 additions and 142 deletions

View File

@@ -17,7 +17,7 @@ extern "C" {
#include "py/repl.h"
#include "py/runtime.h"
#include "py/stackctrl.h"
#include "modturtle.h"
#include "mod/turtle/modturtle.h"
#include "mphalport.h"
}
@@ -109,7 +109,7 @@ void MicroPython::init(void * heapStart, void * heapEnd) {
}
void MicroPython::deinit() {
turtle_deinit();
modturtle_deinit();
mp_deinit();
}