基本的版本

有初始化用的相关文件
驱动文件包括软件IIC还有基于此的24C0X驱动,Flash覆写,还有涉及上位机的启动代码
This commit is contained in:
XerolySkinner
2022-08-05 04:37:47 +08:00
parent 806a98b7ab
commit 05b8853c46
20 changed files with 3641 additions and 0 deletions

33
bsp_System/vartable.h Normal file
View File

@@ -0,0 +1,33 @@
/*----------------------------------------------------------------------------------------------------
# THIS FILE IS PART OF XEROLYSKINNER'S PROJECT
#
# THIS PROGRAM IS FREE SOFTWARE
#
# E-mail:ZABBCCCBBAZ@163.com
# QQ:2715099320
#
# Copyright (c) 2022 XerolySkinner
# All rights reserved.
*/
/*----------------------------------------------------------------------------------------------------
名字:vartable
时间:
程序员:梁源康
说明:向量表
*/
#include "User.h"
#include "main.h"
#include "gpio.h"
#include "stdio.h"
#include "BitShadow.h"
#ifndef _XEROLYSKINNER_VARTABLE_H
#define _XEROLYSKINNER_VARTABLE_H
//////////////////////////////////////////////////////////////////////////////////////////////////////
//----------------------------------------------------------------------------------------------------
// 程序
//
void MainInit(void);
void MainSystem(void);
//////////////////////////////////////////////////////////////////////////////////////////////////////
#endif