mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
21 lines
314 B
C
21 lines
314 B
C
#include "sys.h"
|
||
#include "usart.h"
|
||
#include "delay.h"
|
||
#include "pikaScript.h"
|
||
|
||
int main(void)
|
||
{
|
||
|
||
HAL_Init(); //<2F><>ʼ<EFBFBD><CABC>HAL<41><4C>
|
||
Stm32_Clock_Init(RCC_PLL_MUL9); //<2F><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>,72M
|
||
uart_init(115200);
|
||
delay_init(72);
|
||
PikaObj* pika_main = pikaScriptInit();
|
||
while(1)
|
||
{
|
||
|
||
}
|
||
}
|
||
|
||
|