2.1. How to Get Started with PikaScript using KEIL Simulator

In this article, we introduce a way of playing PikaScript without any hardware, i.e. using simulation in MDK. The target board of simulation is stm32f103, and you can experience the fun of pikascript immediately after downloading the project.

2.1.1. Create project

Enter pikascript official website http://pikascript.com

Select simulation-keil and click “Start Generation”

https://user-images.githubusercontent.com/88232613/171085761-685500a7-dbbc-417c-979e-fefc34dd5c76.png

Unzip the downloaded zip archive and open the project

_images/130745821-864038df-d8b0-41d2-97e8-199815d0d57d.png

2.1.1.1. Run the simulation project

Make sure you have select the simulator as the debugging target

https://user-images.githubusercontent.com/88232613/171085849-c2213242-5d88-4fda-a651-81f7187088b7.png

Compile and debug:

https://user-images.githubusercontent.com/88232613/171086774-faf8a9b8-7ad8-4241-aad5-34e49ae9e01b.png

Once entering the debug session, make sure you have opened the serial windows as shown below:

_images/130747952-42073ba1-c4c4-4acb-9495-766cd5731374.png

run and check the output:

https://user-images.githubusercontent.com/88232613/171086180-ddeec7eb-39c6-47ec-bcd2-4d7380e8b703.png

2.1.2. REPL

Python scripts can be run interactively by typing them directly into the UART window.

With 4 spaces for indentation.

_images/image-20220621093047893.png

2.1.3. How to Change a different python script

Open main.py in any editor, e.g. vscode:

https://user-images.githubusercontent.com/88232613/171086868-3ac1b9f6-c59f-4306-9b43-edf45844a203.png

In main.py, you might see something similar:

  1. # main.py
  2. from PikaObj import *
  3. import Device
  4. import PikaStdLib
  5. led = Device.LED()
  6. uart = Device.Uart()
  7. mem = PikaStdLib.MemChecker()
  8. print('hello wrold')
  9. uart.setName('com1')
  10. uart.send('My name is:')
  11. uart.printName()
  12. print('mem used max:')
  13. mem.max()
  14. print('mem used now:')
  15. mem.now()

This script uses standard python3 syntax. Suppose we have updated this script, so how to make it run in the microcontroller?

The interesting part is, pikascript uses a method similar to java, i.e. it is semi-compiled and semi-interpreted. For example, classes and methods are to be compiled, while method-calls and object-creation/destruction are to be interpreted at runtime. .

The pikascript compilation is a two-step process:

  1. Use the pikascript precompiler to compile the .py files into .c and .h files in pikascript-api.

  2. Use the c compiler to compile all the c source files, and then download the generated image into the microcontroller.

Double-click rust-msc-vxx.yy.zz.exe to run the pika precompiler which is written in Rust.

NOTE: Here xx.yy.zz is the version number.

https://user-images.githubusercontent.com/88232613/171086391-7b6c5ee0-53b1-4800-bfe8-34f586974947.png

If you want to make sure the updated script is compiled as required, please 1) delete all files in the pikascript-api folder, 2) run the precompiler and 3) check whether the .c and .h files have been generated or not.

IMPORTANT: Please do NOT remove the pikascript-api folder but the files inside.

Here is an example shows the *.c *h files generated in pikascript-api

_images/130750476-eaffce03-caeb-40b3-9841-550034fa191a.png

Now, let’s modify main.py as a practice:

  1. from PikaObj import *
  2. import Device
  3. import PikaStdLib
  4. led = Device.LED()
  5. uart = Device.Uart()
  6. mem = PikaStdLib.MemChecker()
  7. print('hello wrold')
  8. uart.setName('com1')
  9. uart.send('My name is:')
  10. uart.printName()
  11. print('mem used max:')
  12. mem.max()
  13. print('mem used now:')
  14. mem.now()
  15. # new code start
  16. print('add new code start')
  17. uart.setName('com2')
  18. uart.printName()
  19. print('add new code end')
  20. # new code end

As you can see, we have added 4 new lines to main.py. Let’s compile and run.

Compile pikascript-api

https://user-images.githubusercontent.com/88232613/171086456-c3ede545-3f94-422f-acb6-711e634b468e.png

Compile the keil project and enter the debugging session:

_images/130751539-aa0bdb82-750f-4f98-8f6f-02d653dda64a.png

run and watch the output

https://user-images.githubusercontent.com/88232613/171086558-7ee7aeca-eb2d-4cd1-ac5a-21aa6e6f9d7e.png

As shown above, there are 3 new lines in the output, indicating that our modification works as expected.

That’s all, enjoy!!