pikapython/doc/2.十分钟快速部署.md

63 lines
2.3 KiB
Markdown
Raw Normal View History

2021-08-26 20:26:22 +08:00
在本篇文档中将会介绍为已有的keil工程部署PikaScript的方法。
PikaScript几乎没有全局变量和宏仅依赖标准库因此为已有的工程部署PikaScript是非常容易的。
下面是部署PikaScript的具体步骤。
### (1)下载PikaScript源码
进入PikaScript主仓库
https://github.com/mimilib/pikascript
2021-08-26 21:01:12 +08:00
打开发布页面
2021-08-26 20:26:22 +08:00
![image](https://user-images.githubusercontent.com/88232613/130962133-d7984e05-da83-4ac6-bec6-ff603ce058f1.png)
2021-08-26 21:01:12 +08:00
下载最新发布的PikaScript软件包
2021-08-26 20:26:22 +08:00
![image](https://user-images.githubusercontent.com/88232613/130962168-91045ccc-3c6d-434c-b147-30b298025822.png)
2021-08-26 21:01:12 +08:00
解压后得到一个pikascript文件夹直接将这个文件夹复制到keil工程里面
![image](https://user-images.githubusercontent.com/88232613/130965530-d2f0fe25-2a4b-4286-b3ed-c534ac182e35.png)
例如可以复制到keil工程的根目录
![image](https://user-images.githubusercontent.com/88232613/130965822-754a5495-00c8-4f1f-b7bb-d1755d56c6fe.png)
2021-08-26 21:07:07 +08:00
### (2)调整堆栈
打开工程的启动文件
2021-08-26 21:01:12 +08:00
![image](https://user-images.githubusercontent.com/88232613/130966276-24014a0a-90a6-4bd7-96b7-fde54806b8c3.png)
建议分配4K的栈空间和16K的堆空间最少也需要分配2K的栈空间和8K的堆空间
4K栈空间对应0x1000, 16K堆空间对应0x4000如下图所示
2021-08-25 16:05:04 +08:00
2021-08-26 21:01:12 +08:00
![image](https://user-images.githubusercontent.com/88232613/130967178-a985a4f5-730c-47fd-9317-68f33bc00066.png)
2021-08-26 21:07:07 +08:00
### (3)添加源码
在Project中新建三个group建议明明为pikascript-core,pikascript-api和pikascript-lib
![image](https://user-images.githubusercontent.com/88232613/130967351-597b8f6b-cc4e-4bc3-9cb6-2f335e5dccea.png)
然后将pikascript文件夹内的三个子文件夹下的.c文件全部添加到keil工程里
![image](https://user-images.githubusercontent.com/88232613/130967688-d0e22c3c-498d-41d4-8282-f7d5edeb4ec4.png)
然后为pikascript-core和pikascript-api文件夹添加include路径
![image](https://user-images.githubusercontent.com/88232613/130967813-94016b8a-e408-4b49-b1e1-76a5df5fe984.png)
![image](https://user-images.githubusercontent.com/88232613/130967949-8399c65b-5584-4674-a947-e40103d953ea.png)
2021-08-26 21:12:58 +08:00
### (4)编译源码
编译源码时需要勾选C99标准然后直接编译即可
![image](https://user-images.githubusercontent.com/88232613/130968626-7d8d4f46-eb0c-4ccd-9c34-eab160b290f5.png)