-
Refer to C library transplantation to prepare the environment chapter
-
When configuring menuconfig, turn on the using pikaScript lib option
-
Refer to C Library Transplantation library transplantation chapter to complete the transplantation of the basic C runtime environment
-
After transplanting the basic C runtime environment, import the pikaPython header file
#include "pikaScript.h"
and create a pikaPython taskstatic void tnsq_pika_task_entry(void *ptParam) { PikaObj* pikaMain = NULL; pikaMain = pikaScriptInit(); }
-
Run this task to get the pikaPython version of the Snake game
rt_thread_t pikaTid = NULL; pikaTid = rt_thread_create("tnsq_pika", tnsq_pika_task_entry, RT_NULL, 4096, 20, 10); if (pikaTid != RT_NULL) { rt_thread_startup(pikaTid); }