-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zhanbin.li
committed
Aug 17, 2017
1 parent
551536d
commit 704306d
Showing
617 changed files
with
490,186 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
29 changes: 29 additions & 0 deletions
29
.svn/pristine/02/0245432e4d909c88bb16cfc17b5dfb996f1df869.svn-base
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
******************** (C) COPYRIGHT 2010 DJI ********************************** | ||
* | ||
* @Project Name : xp60.uvproj | ||
* @File Name : usb_composite_app.h | ||
* @Environment : keil mdk4.12/LPC1765/100M cclock | ||
* @Author&Date : 2011-02-16 | ||
* @Version : 1.00 | ||
****************************************************************************** | ||
* @Description | ||
* lpc17xx timer and pwm module | ||
*/ | ||
|
||
/* Define to prevent recursive inclusion -------------------------------------*/ | ||
#ifndef __USB_COMPOSITE_APP_H__ | ||
#define __USB_COMPOSITE_APP_H__ | ||
|
||
/* Function declaration ------------------------------------------------------*/ | ||
void USB_Init_CDC(void); | ||
void USB_Init_MSC(void); | ||
void usb_composite_init(void); | ||
unsigned char msc_init(void); | ||
void usb_bus_off(void); | ||
void usb_bus_on(void); | ||
|
||
extern unsigned char usb_on_flag; | ||
|
||
/******************* (C) COPYRIGHT 2010 DJI ************END OF FILE***********/ | ||
#endif |
41 changes: 41 additions & 0 deletions
41
.svn/pristine/05/052ddbad646bdb04383177b77c9e01685e491c99.svn-base
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/** | ||
******************** (C) COPYRIGHT 2010 DJI ********************************** | ||
* | ||
* @Project Name : BL_WKM2_LED_IAP.uvproj | ||
* @File Name : drivers.h | ||
* @Environment : keil mdk4.12/LPC1765/100M cclock | ||
* @Author&Date : 2011-01-27 | ||
* @Version : 1.00 | ||
****************************************************************************** | ||
* @Description | ||
* lpc17xx on chip peripheral derivers | ||
*/ | ||
|
||
|
||
/* Define to prevent recursive inclusion -------------------------------------*/ | ||
#ifndef __DRIVERS_H__ | ||
#define __DRIVERS_H__ | ||
|
||
/* Includes ------------------------------------------------------------------*/ | ||
/* STANDARD LIBRARIES */ | ||
#include <string.h> | ||
#include <stdarg.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <LPC17xx.h> | ||
|
||
/* app */ | ||
|
||
/* bsp */ | ||
#include "../bsp/bsp.h" | ||
|
||
/* drivers */ | ||
#include "drivers_def.h" | ||
#include "gpio/lpc17xx_gpio.h" | ||
#include "clkpwr/lpc17xx_clkpwr_ctl.h" | ||
#include "uart/lpc17xx_uart.h" | ||
#include "timer/lpc17xx_timer.h" | ||
#include "wdt/lpc17xx_wdt.h" | ||
|
||
/******************* (C) COPYRIGHT 2010 DJI ************END OF FILE***********/ | ||
#endif |
Oops, something went wrong.