牛青 的文章
-
Linux-2.6.38驱动的几个结构体关
Linux驱动程序刚接触,虽然不是很清楚,但是总归是慢慢学习的过程。我的环境是Fedora14虚拟机。内核版本是2.6.38.1,其中的实现过程存在很多的问题,主要是因…… -
采用mmap实现文件的复制
#include<unistd.h> #include<sys/types.h> #include<stdio.h> #include<stdlib.h> #include<signal.h> #include<sys/mma…… -
-
-
S3C2440触摸屏驱动代码分析
实验环境: 主机:Fedora14 开发板:Tq2440 移植linux内核版本:linux-2.6.30.4 最近学习了一下S3C2440的触摸屏驱动代码,也算是对前期一段时间的复习,让自…… -
-
-
C51脉冲宽度检测程序
/********************************************** 315无线模块 PT2262 1.5M 270KHz 可以测出脉冲宽度 起始时间 5000us 高电平时间 490us 低电平时…… -
PID公式的推导过程及实现代码
一、PID框图: n0(t)是要稳定的值 n(t)是当前输出值 e(t) = n0(t) - n(t) 一、模拟PID控制原理 这个公式网络上很好找: 二、数字PID…… -
单片机编程要用的正弦表
这个正弦表可以直接嵌入到程序中实现软件模拟正弦波 uchar code sin[120]={0x87,0x8D,0x94,0x9B,0xA1,0xA8,0xAE,0xB4,0x1BA,0xC0, 0xC6,0xCB,0xD1,0x…… -
error:undeclared name解决办法
现象: 提示error:undeclared name错误。解决办法在下面 分析:究其原因主要是新添加的程序文件中关于特殊寄存器的地址映射没有在该文件中包含进来,可以…… -
异或妙用
#include <string.h> void main(void) { int a=15,b=24; printf("a=%d b=%d\n",a,b); a=a^b; b=b^a; a=a^b; printf("a=%d b=%d\n",a,b); } a…… -
C++含参数函数的继承方法
方法:先继承类然后映射函数。 #include <iostream.h> class animal { public: animal(char thename); }; animal::animal(char thename) { char name; …… -
-
从其他 html 文件导航时不显示 jQuery-ui-map
jQuery-ui-map not displayed when navigating from other html file 这是我关于stackoverflow的第一个问题,所以要温柔:) 我正在使用 jQuery、jQuery mobi…… -
jquery点击功能问题
Jquery click function question 我有一个功能,当用户第一次点击它会添加一个类,然后在第二次点击它会删除该类,然后再次..等等..就像第一次点击它意味着…… -
关于ios:导航tableview时添加到superview的View消失
View added to superview disappearing when navigating tableview 当用户选择其中一个 tableView 单元格时,我有一个 tableView 导航到详细视图。这个主 Ta…… -
关于cllocationmanager:iOS Geofence,监控开始时在区域内如何处理?
iOS Geofence, how to handle when inside region when monitoring starts? 当调用 startMonitoringForRegion 时,我一直无法弄清楚如何处理手机已经在区域…… -
关于iphone:如何为iOS应用内购买创建促销代码
How to create a promotion code for iOS in-app purchases 截至今年 2014 年 5 月,在 Google 中搜索"ios in app purchase Promotion code",许多新闻网…… -
关于iphone:在iOS的核心数据中存储复杂数据结构的最佳实践是什么?
What's the best practice to store complex data structure in core data on iOS? 我有一个复杂的数据结构以及一些用于查询的其他数据字段,需要与核心数据…… -
关于 ios:如何在 UI 测试期间使用 Xcode 7 截取我的 UI?
How do I take screenshots of my UI with Xcode 7 during UI Testing? 所以我下载了 XCode 7 的测试版并创建了一些 UI 测试,但我找不到在测试期间如何截…… -
在 iOS/MacOS 中调用本机函数时,如何将复杂的 swift 数据类型传递给 C 数据类型?
How can I pass complex swift datatypes to C datatypes when calling native functions in iOS/MacOS? 我设法获得了一个包含在框架中的基本 dylib,它允许…… -
关于ios:swift上的自定义标记图像(MapKit)
Custom marker image on swift (MapKit) 我在 MapKit 上使用自定义标记 如何更改自定义标记上的图像宽度和高度? 我的代码: 123456789101112131415161…… -
关于java:检查电子邮件是否在数据库中,否则将用户名和密码存储在数据库中
Checking if emailis in database, otherwise store username and password in database 我正在尝试通过一个方法 (register();) 检查注册页面中的字段是否为…… -
关于 java:CallableStatement getResultSet 在使用输出参数时返回 null
CallableStatement getResultSet returns null when using output parameter 尝试从我的存储过程中检索多个结果集时,我得到了一些奇怪的结果。如果我直接从……