mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
17 lines
247 B
C
17 lines
247 B
C
#include "sys.h"
|
|
#include "usart.h"
|
|
#include "pikaScript.h"
|
|
|
|
int main(void)
|
|
{
|
|
HAL_Init();
|
|
Stm32_Clock_Init(RCC_PLL_MUL9);
|
|
uart_init(115200);
|
|
PikaObj* pika_main = pikaScriptInit();
|
|
while(1){
|
|
|
|
}
|
|
}
|
|
|
|
|