码迷,mamicode.com
首页 >  
搜索关键字:lpc1788    ( 17个结果
LPC1788的LCD接口驱动真彩屏
#ifndef __LCD_H_#define __LCD_H_#include "common.h"#include "debugserial.h"#include "delay.h"#include "sdram.h"#define White 0xFFFFFF#define Black 0x0...
分类:其他好文   时间:2015-03-15 18:22:52    阅读次数:225
lPC1788的GPIO驱动
#include "led.h"void led_init(void){ //p1.14 p0.16 p1.13 p4.27 LPC_SC->PCONP |= (1P1_14 = 0x00;//选择gpio功能,禁止迟滞 不反向 正常推挽 LPC_IOCON->P1_14 |= (2P0_16 = ...
分类:其他好文   时间:2015-03-15 18:19:37    阅读次数:2457
LPC1788定时器使用
#ifndef __TIM_H_#define __TIM_H_#include "common.h"extern u8 tim1_mr0_flag;void tim0_ch0_count_int_init(u32 pr,u32 count);//定时器0 通道0 计数模式 中断模式 初始化#end...
分类:其他好文   时间:2015-03-15 18:19:26    阅读次数:228
LPC1788的IIC使用
#ifndef __IIC0_H_#define __IIC0_H_#include "common.h"#include "delay.h"//IIC通讯过程中的指定状态#define STATUS_SENDSTART 0X08 //已经发送起始条件#define STATUS_REPEATSTA...
分类:其他好文   时间:2015-03-15 18:17:26    阅读次数:153
LPC1788做U盘的时候对命令的响应
首先是对于端点的数据处理#ifndef __USBEP2_H_#define __USBEP2_H_#include "usb.h"#include "usbhw.h"#include "msc.h"#include "mscuser.h"void usb_ep2_in_process(void);...
分类:其他好文   时间:2015-03-15 18:16:47    阅读次数:367
LPC1788系统时钟初始化
#ifndef __SYS_H_#define __SYS_H_#include "common.h"#define SystemCoreClock 120000000 //cpu时钟频率,计算时有用#define ApbClock 120000000 //120M#define EmcClock ...
分类:其他好文   时间:2015-03-15 18:14:29    阅读次数:167
LPC1788的外部中断和GPIO中断
首先是gpio中断,这一点和1768不同,1768使用的中断时和eint3共用中断通道,到了1788,专门为gpio开辟了中断#ifndef __JOYPAD_H_#define __JOYPAD_H_#include "sys.h"#include "delay.h"#define JOYPAD_...
分类:其他好文   时间:2015-03-15 07:05:13    阅读次数:267
LPC1788的ADC和DAC使用
#ifndef __ADC1_H_#define __ADC1_H_#include "common.h"#include "delay.h"void adc_init(u8 ch,u8 div);u16 adc_cover(u8 ch);#endif#include "adc1.h"void ad...
分类:其他好文   时间:2015-03-15 07:03:34    阅读次数:350
lPC1788的串口通讯
#ifndef __DEBUGSERIAL_H_#define __DEBUGSERIAL_H_#include "sys.h"#include "stdio.h"extern u8 serialBuffer[256];extern u16 serialStatus;//?void Debug_Se...
分类:其他好文   时间:2015-03-15 07:03:13    阅读次数:246
LPC1788的EMC驱动norflash
Norflash型号为sst39vf32#ifndef __NORFLASH_H_#define __NORFLASH_H_#include "common.h"#include "delay.h"#include "debugserial.h"#define NOR_FLASH_BASE 0x80...
分类:其他好文   时间:2015-03-15 07:01:20    阅读次数:245
17条   1 2 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!