|
|
4 ani în urmă | |
|---|---|---|
| .github | 4 ani în urmă | |
| bsp | 4 ani în urmă | |
| document | 4 ani în urmă | |
| examples | 4 ani în urmă | |
| package | 4 ani în urmă | |
| port | 4 ani în urmă | |
| src | 4 ani în urmă | |
| tools | 4 ani în urmă | |
| .gitattributes | 4 ani în urmă | |
| .gitignore | 4 ani în urmă | |
| LICENSE | 4 ani în urmă | |
| README.md | 4 ani în urmă | |
| README_zh.md | 4 ani în urmă | |
| SConscript | 4 ani în urmă | |
| packages.toml | 4 ani în urmă |

中文页|
PikaScript is an ultra-lightweight Python engine with zero dependencies and zero-configuration, that can run with 4KB of RAM and 32KB of flash (such as STM32G030C8 and STM32F103C8).

It's very easy to bind C function to python module with the help of Pika Pre-compiler.

Run the PikaPackage.exe directly, then the pikascript repo would be downloaded auto in the /tmp/pikascript folder of your current disc partition.
Add requestment.txt to the same folder of PikaPackage.exe then run PikaPackage.exe. The run-time core, pre-compiler and moudles would be installed in the current folder.
Released modules:packages.toml
You can use simulation project to quick start without hardware,or use the out-of-the-box develop board Pika-Pi—Zero.
The board based on STM32G030C8T6 MCU, only 64kB Flash, 8kB RAM can run PikaScript with total peripheral device (GPIO、TIME、IIC、RGB、KEY、LCD、RGB). CH340 is deployed to support USB to serial with Type-C USB, support download python script py serial, there are 4 RGB on the board and support the LCD.
1. PikaScript-Quick start within 3 minutes
2. PikaScript-Architecture and principle
3. PikaScript-Deploy within 10 minutes
4. PikaScript-Standard develop workflow
src - core code
bsp - mcu/board support
port - OS support
document - developt document
examples - example scripts
package - packages and moudles
pikaCompiler - pre-compiler write by Rust, used to bind C function to python moudle.
pikaPackageManager - pacakge manager
| MCU/Board | bsp | gpio | uart | pwm | adc | i2c | spi | rgb | oled |
|---|---|---|---|---|---|---|---|---|---|
| PikaPi Zero | √ | √ | √ | √ | √ | √ | √ | √ | |
| stm32g030c8 | √ | √ | √ | √ | √ | √ | |||
| stm32g070cB | √ | √ | √ | √ | √ | ||||
| stm32f103c8 | √ | √ | √ | √ | √ | ||||
| ch32v103r8t6 | √ | √ | |||||||
| cm32m101a | √ |
Support run in mcu without OS or file system. Can run in everywhere with RAM ≥ 4kB and FLASH ≥ 32kB,such as stm32g030, stm32f103c8t6,esp8266.
Support run and program python scripts by serial.

Support IDEs like Keil, IAR, rt-thread studio and segger embedded studio to develop C moudle.
Support build tools like CMake, makeFile and Scons.
Zero dependencies, zero configuration, out-of-the-box, easy to integrated into privious C projcet.
Eazy to extern customized C moudles.
Support linux.
Support subaggregate of python 3 standard syntax.
Support class and method define, encapsulation-inheritance-polymorphism and moudles in compile time - Based on Pika Pre-compiler.
Support method invoke, argument define, new object, free object, control flow(if\while) and operator ( + - * / < == > ). - Based on Pika Runtime Core.
| Syntax | Compile-Time | Run-Time |
|---|---|---|
| Class Define | √ | |
| Class Inherit | √ | |
| Method Define | √ | √ |
| Method Override | √ | √ |
| Method Invoke | √ | √ |
| Module Import | √ | √ |
| Argument Define | √ | √ |
| Argument Assignment | √ | √ |
| Object New | √ | √ |
| Object Free | √ | √ |
| Object Nest | √ | √ |
| + | - | * | / | == | > | < | >= | <= |
|---|---|---|---|---|---|---|---|---|
| √ | √ | √ | √ | √ | √ | √ |
| if | while | for |
|---|---|---|
| √ | √ |
Readability first, nearly never use macro function and global argument.
Complete unit testes based on google test.

| Content | Contributer |
|---|---|
| QEMU simulation with ARM-2D | liuduanfei |
| Donate:GD32E103TB muc 2 pic | 信息牛(WeChat) |
| Rt-thread bsp template | Meco Jianting Man |
| Donate:EC600S-CN 4G module | 移远模块 |
| Donate:BL706 board | 博流智能 bouffalolab |
| Donate:CM32M101A board | 孟巍(WeChat) |
| Donate:APM32F030R8 board | 极海半导体 陈成 |
| Donate:APM32E103VB board | 极海半导体 陈成 |
| Donate:APEX-Link debugger | 极海半导体 陈成 |
| format code,add gitattribute | Meco Jianting Man |
| demo/simulation-keil | 千帆(WeChat) |
| demo/stm32f103zet6/demo01-led-stm32f103zet6 | 甜航 |
| demo/stm32f103zet6/demo02-led-stm32f103zet6_tworoot | 甜航 |
| demo/stm32f407zgt/demo01-led-stm32f407vgt | 甜航 |
step1: Clone the repo
git clone https://github.com/pikastech/pikascript
cd pikascript/port/linux
step2: Compile the project
sh init.sh # Only nedded in the first time.
sh make.sh # Compile the project.
step3: Run the unit tests.
sh gtest.sh
step4: Run the banchmark
sh test-banchmark.sh
step5: Run the demo
./build/src/boot/demo06-pikamain/pikascript_demo06-pikamain
The scripts in demos are in the examples folder.
The maximum RAM usage of these demos is only 3.56K, which is 4.56K if the 1K stack is included, and the maximum Flash usage is 30.4K. Refer to the 20K RAM and 64K Flash of STM32F103C8T6, less than 25% RAM and less than 50% Flash are used.
A quick comparison can be made between the microPython chip STM32F405RG and the PikaScript chip STM32G070CB.
In addition to device drivers, developing custom Python modules for MCU is very easy. The following two demos are extensions of the custom module, which developed python interfaces for the ARM-2D image driver library.