码迷,mamicode.com
首页 > 2015年03月15日 > 全部分享
LPC1768串口使用
Lpc1768内置了四个串口通讯模块,都是异步通讯模块,其中,串口0/2/3是普通串口通讯,串口1与 UART0/2/3 基本相同,只是增加了一个 Modem 接口和 RS-486/EIA-486 模式,不支持IrDA,我们今天以串口0来演示串口的使用. 首先,使用串口0要打开串口0的时钟然后要配置...
分类:其他好文   时间:2015-03-15 02:04:10    阅读次数:277
[Leetcode] Search in Rotated Sorted Array
Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might become4 5 6 7 0 1 2).You are given a target value t...
分类:其他好文   时间:2015-03-15 02:05:16    阅读次数:104
在win8下的ipython notebook安装和入门
iptyhon 是一个python交互shell,比python自带的shell要好用,更为优越是ipython notebook。网上一搜 如何安装python notebook的教程很多,可惜都不是简单的。你会遇到很多问题,scipy,numpy安装就会最大的问题是vs的问题。其实,网上有很多大...
分类:编程语言   时间:2015-03-15 02:04:16    阅读次数:1969
初窥软件测试
软件测试,简单来说,就是测试软件的质量与正确性。作为程序员,我们几乎每次写代码都在做这样的事情:通过不同的输入,检测输出是否正确;不正确的话就在代码中一行一行的找BUG。这些其实都属于软件测试。可是作为软件开发者,简单的正确输出肯定是不能满足用户需求的,我们更需要的是提高代码质量、效率,因此我们需要...
分类:其他好文   时间:2015-03-15 02:02:59    阅读次数:107
npm WARN unmet dependency问题的解决方法
removenode_modules$ rm -rf node_modules/run$ npm cache clean详见这里:http://stackoverflow.com/questions/20764881/why-does-npm-install-say-i-have-unmet-dep...
分类:其他好文   时间:2015-03-15 02:02:16    阅读次数:274
几个小模板:topology, dijkstra, spfa, floyd, kruskal, prim
1.topology: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 9 using namespace std;10 11 #define EPS 1e-612 #def...
分类:其他好文   时间:2015-03-15 02:02:38    阅读次数:245
[Leetcode]Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他好文   时间:2015-03-15 02:02:44    阅读次数:92
lpc1768的PWM使用
//p2.0 pwm1.1void ALS_Init(void) //初始化{ LPC_SC->PCONP |= (1PCLKSEL0 &= ~(3PCLKSEL0 &= ~(3PINSEL4 &= ~(0X03LPINMODE4 &= ~(0X03LPINMODE_OD2 &= ~(0X01TCR...
分类:其他好文   时间:2015-03-15 02:03:12    阅读次数:256
LPC1768的usb使用--硬件篇
LPC1768芯片带有USB设备控制器,前面写的文章都是在说比较简单的设备驱动,今天来说复杂一点的 首先是硬件层的配置#ifndef __USBHW_H__#define __USBHW_H__#include "debugSerial.h"#include "usbreg.h"#inclu...
分类:其他好文   时间:2015-03-15 02:00:55    阅读次数:3509
lpc1768的rit使用
LPC1768在系统滴答定时器和通用定时器之外还引入了一个定时器,叫做重复定时器RIT,该定时器只能用于定时操作,带有一个中断,我个人的感觉,这似乎是为了延时函数设计的一个定时器那么使用该定时器时遵循什么流程?第一,打开时钟第二,我们要确定定时器从pclk分频数值,这要靠另外一个寄存器第三,先关闭定...
分类:其他好文   时间:2015-03-15 02:01:23    阅读次数:128
快速幂模版
快速幂模版快速幂的思想是分治,根据题目的数据要注意long long快速幂普通版,比取余版快,但容易超范围,慎用,一般可用取余版MOD设为INF://快速幂普通版(未取余)long long quickpow(long long n,long long k){ long long res=1;...
分类:其他好文   时间:2015-03-15 02:01:34    阅读次数:102
lpc1768的系统时钟
#define XTAL_FREQ 12000000#define VECT_TAB_OFFSET 0x0000void SystemInit(void){ //PLL0时钟配置 LPC_SC->SCS = 0X00000020; /*使能外部主晶振,频率范围1-20M*/ if (LPC_SC->...
分类:其他好文   时间:2015-03-15 02:02:41    阅读次数:282
Python数据结构(一)
5. Data StructuresThis chapter describes some things you’ve learned about already in more detail, and adds some new things as well.这一章节将更详细的描述你已经学到的东西...
分类:编程语言   时间:2015-03-15 02:00:13    阅读次数:190
LPC1768的USB使用--宏定义
#ifndef __USBREG_H#define __USBREG_H/* usb设备中断定义 usb_devintst usb_devinten usb_devintclr usb_devintdet*/#define FRAME_INT 0x00000001 //每隔1MS产生一次帧中断,该中...
分类:其他好文   时间:2015-03-15 02:00:19    阅读次数:803
aizu2249最短路Road Construction
题目链接求让城市1到其他城市在保证最短路的情况下求最小花费,最短路水题。#include #include #include #include using namespace std;const int INF=1e9;struct edge{ int u,v; int len,cost...
分类:其他好文   时间:2015-03-15 02:02:37    阅读次数:152
Print a Binary Tree in Vertical Order
Given a binary tree, print it vertically. The following example illustrates vertical order traversal. 1 / \ 2 3 / ...
分类:其他好文   时间:2015-03-15 02:01:09    阅读次数:134
LPC1768的看门狗定时器使用
void wwdg_init(void){ LPC_SC->PCLKSEL0 |= (3WDCLKSEL &= ~(3WDCLKSEL |= (1WDCLKSEL |= (1WDTC = 0xffff;//设定重载值 LPC_WDT->WDMOD |= (1WDFEED = 0xaa; LPC_WD...
分类:其他好文   时间:2015-03-15 02:01:05    阅读次数:235
1702条   上一页 1 ... 88 89 90 91 92 93 94 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!