mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
24 lines
320 B
C
24 lines
320 B
C
|
|
#include "cm32m101a_conf.h"
|
|
#include "share.h"
|
|
#include "led.h"
|
|
#include "relay.h"
|
|
#include "key_exti.h"
|
|
#include <stdio.h>
|
|
#include "uart.h"
|
|
#include "pikaScript.h"
|
|
|
|
int main(void)
|
|
{
|
|
Led_Init();
|
|
Relay_Init();
|
|
Key_ExtiInit();
|
|
Usart1_Init();
|
|
|
|
/* launch pikascript */
|
|
pikaScriptInit();
|
|
while (1)
|
|
{
|
|
}
|
|
}
|