mirror of
https://gitee.com/seekfree/TC264_Library.git
synced 2026-06-04 03:32:56 +00:00
修改模拟IIC默认延时时间为20 添加 需要特别注意P20_2是不能用于输出的,仅仅只有输入的功能 注意事项 将摄像头采集DMA改为link传输,可以大大降低DMA中断次数 修改默认的软件IIC引脚定义 将6050等 需要用到软件IIC的模块,在初始化函数中默认调用模拟IIC初始化 添加小钻风驱动程序
69 lines
1.7 KiB
C
69 lines
1.7 KiB
C
/*********************************************************************************************************************
|
||
* COPYRIGHT NOTICE
|
||
* Copyright (c) 2020,逐飞科技
|
||
* All rights reserved.
|
||
* 技术讨论QQ群:三群:824575535
|
||
*
|
||
* 以下所有内容版权均属逐飞科技所有,未经允许不得用于商业用途,
|
||
* 欢迎各位使用并传播本程序,修改内容时必须保留逐飞科技的版权声明。
|
||
*
|
||
* @file headfile
|
||
* @company 成都逐飞科技有限公司
|
||
* @author 逐飞科技(QQ3184284598)
|
||
* @version 查看doc内version文件 版本说明
|
||
* @Software tasking v6.3r1
|
||
* @Target core TC264D
|
||
* @Taobao https://seekfree.taobao.com/
|
||
* @date 2020-3-23
|
||
********************************************************************************************************************/
|
||
|
||
#ifndef _headfile_h
|
||
#define _headfile_h
|
||
|
||
|
||
|
||
|
||
#include "SEEKFREE_PRINTF.h"
|
||
|
||
#include "zf_assert.h"
|
||
#include "stdio.h"
|
||
#include "math.h"
|
||
//官方头文件
|
||
#include "ifxAsclin_reg.h"
|
||
#include "SysSe/Bsp/Bsp.h"
|
||
#include "IfxCcu6_Timer.h"
|
||
#include "IfxScuEru.h"
|
||
|
||
//------逐飞科技单片机外设驱动头文件
|
||
#include "zf_gpio.h"
|
||
#include "zf_gtm_pwm.h"
|
||
#include "zf_uart.h"
|
||
#include "zf_ccu6_pit.h"
|
||
#include "zf_stm_systick.h"
|
||
#include "zf_spi.h"
|
||
#include "zf_eru.h"
|
||
#include "zf_eru_dma.h"
|
||
#include "zf_vadc.h"
|
||
#include "zf_gpt12.h"
|
||
#include "zf_eeprom.h"
|
||
|
||
//------逐飞科技产品驱动头文件
|
||
#include "SEEKFREE_18TFT.h"
|
||
#include "SEEKFREE_FONT.h"
|
||
#include "SEEKFREE_FUN.h"
|
||
#include "SEEKFREE_IIC.h"
|
||
#include "SEEKFREE_IPS114_SPI.h"
|
||
#include "SEEKFREE_OLED.h"
|
||
#include "SEEKFREE_VIRSCO.h"
|
||
#include "SEEKFREE_MT9V03X.h"
|
||
#include "SEEKFREE_ICM20602.h"
|
||
#include "SEEKFREE_MPU6050.h"
|
||
#include "SEEKFREE_MMA8451.h"
|
||
#include "SEEKFREE_L3G4200D.h"
|
||
#include "SEEKFREE_WIRELESS.h"
|
||
#include "SEEKFREE_IPS200_PARALLEL8.h"
|
||
#include "SEEKFREE_7725.h"
|
||
|
||
#endif
|
||
|