17 lines
247 B
C
Raw Normal View History

2021-12-05 22:05:30 +08:00
#include "sys.h"
#include "usart.h"
#include "pikaScript.h"
int main(void)
{
HAL_Init();
Stm32_Clock_Init(RCC_PLL_MUL9);
uart_init(115200);
2021-12-05 22:05:30 +08:00
PikaObj* pika_main = pikaScriptInit();
while(1){
2021-12-05 22:05:30 +08:00
}
2021-12-05 22:05:30 +08:00
}