extend stack to 4096

This commit is contained in:
Meco Man 2021-12-08 08:10:57 -05:00
parent 1001f0d154
commit 6ea786caef

View File

@ -5,13 +5,13 @@
*
* Change Logs:
* Date Author Notes
* 2021-12-07 lyon the first version
* 2021-12-07 lyon the first version
* 2021-12-08 Meco Man reimplement init
*/
#include <rtthread.h>
#include <pikaScript.h>
#define PIKASCRIPT_STACK_SIZE 1024
#define PIKASCRIPT_STACK_SIZE 4096
#define PIKASCRIPT_STACK_PRIO 20
static void pikascript_entry(void *parameter)
@ -38,5 +38,4 @@ static int rt_pika_init(void)
return 0;
}
INIT_APP_EXPORT(rt_pika_init);