Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.16 KB

guide_with_pikaPython_en.md

File metadata and controls

35 lines (27 loc) · 1.16 KB

pikaPython library porting

Prepare environment

  • Refer to C library transplantation to prepare the environment chapter

  • When configuring menuconfig, turn on the using pikaScript lib option

    • TinySquare

Library porting

  • 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 task

    static 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);
    }