This repository has been archived on 2023-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
bl_mcu_sdk/examples/pikapython/main.c

12 lines
181 B
C
Raw Normal View History

2023-01-11 17:27:36 +08:00
#include <stdlib.h>
#include "board.h"
#include "ff.h"
#include "log.h"
#include "pikaScript.h"
#include "vlibc_stdio.h"
int main(void) {
board_init();
pikaScriptInit();
}