- 博客(21)
- 收藏
- 关注
转载 EOS与ESD的区别
转自:http://tech.hqew.com/fangan_676647 一、什么是EOS? EOS为ELectrical Over Stress的缩写,指所有的过度电性应力。当外界电流或电压超过器件的最大规范条件时,器件性能会减弱甚至损坏。 EOS通常产生于 1.电源(AC/DC) 干扰、电源杂讯和过电压。 2.由于测试程序切换(热切换)导致的瞬变电流/峰值/低频...
2018-11-15 10:53:11
9749
转载 KEIL MDK 查看代码量、RAM使用情况--RO-data、RW-data、ZI-data的解释
KEIL RVMDK编译后的信息 Program Size: Code=86496 RO-data=9064 RW-data=1452 ZI-data=16116 Code是代码占用的空间,RO-data是 Read Only 只读常量的大小,如const型,RW-data是(Read Write) 初始化了的可读写变量的大小,ZI-data是(Zero Initialize)
2017-06-02 19:47:19
610
转载 incomplete type is not allowed
在b.c文件中需要引入一个a.c中的结构体变量,,我在b.c中直接extern 这个结构体,,结果编译时报错error: #70: incomplete type is not allowed最后上网查找才知道结构体不能这样引入。。 正确的引入方法是; 1.在a.h中声明这个结构体,,(结构体实体要在.h文件中) 2.在a.c中定义这个结构体类型的变量。(也可以在a.
2017-06-01 20:07:22
36681
2
转载 UART流控
RTS/CTS 提供的是一种PC 和Modem 之间控制数据流的方法.CTS和RTS是串行通讯中流控制的两个管脚,本身成对出现。 以PC与Modem之间的链接为例:(1) Modem 准备接收数据时 使CTS为ON(1) 当Modem 不能接收更多数据时, 使CTS为OFF(0) 即:Modem控制CTS(2) PC 可以接收数据时 RT
2017-03-08 15:50:47
2838
转载 .\Objects\Template.axf: Error: L6405E: No .ANY selector matches stm32f4xx_it.o(i.DebugMon_Handler).
解决方法源自:http://www.openedv.com/thread-80085-1-1.html图中画红圈的2 上面的一个选项“Execute-only Code”被误选,取消了就可以了
2017-02-27 18:28:21
7067
2
转载 如何提取iOS App素材
文档摘自:百度经验http://jingyan.baidu.com/article/a501d80c224bacec630f5edc.html有很多小伙伴们在初学iOS的时候,都希望抓取钟意的App的素材来尝试实战训练,但是苦于不知道如何获取所安装的App的素材,而错过了那么多提升自我技术水平的好机会。这篇教程会教大家如何一步步提取iOS 唱吧App中的素材资源!
2017-02-19 11:30:51
2059
转载 libWeiboSDK.a(WBSDKNormalWebViewController.o)' does not contain bitcode. You must rebuild
Xcode7升级之后,libWeiboSDK.a(WBSDKNormalWebViewController.o)' does not contain bitcode. You must rebuildxcode升级之后,真机调试,遇到问题;解决方案:bitcode 的原因,TARGETS---->Build Settings -=--->搜索bitcode ,更改Build O
2017-01-23 08:25:05
466
转载 ARC forbids explicit message send of'release 错误
ARC forbids explicit message send of'release 错误 ARC forbids explicit message send of'release' 'release' is unavailable: not available inautomatic reference counting mode 由于ARC是内存自动管理的,所
2017-01-17 07:28:27
537
原创 The operation couldn’t be completed. Unable to log in with account ''. An unexpected failure occurre
errors:The operation couldn’t be completed. Unable to log in with account 'myappleid'. An unexpected failure occurred while logging in (Underlying error code 1100).解决方法: I had to go to "Pr
2017-01-16 07:38:26
12954
原创 App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure.
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file. iOS 9.0由于强制使用https 所以之
2017-01-05 20:40:24
476
原创 条件运算符?优先级
在调试时 int count = 128; _scrollView.contentSize =CGSizeMake(0,20+44*(_count/8+1+_count%8?1:0)); 生成的scrollview老是不能滑动,后来打log发现,contentsize的高度一直时64,修改为_scrollView
2016-12-23 06:22:24
2112
转载 .tbd和.dylib
Xcode7 升级后 在引入动态库的时候 发现.tbd 取代了 .dylib出现在我们眼前.dylib 去哪了事实上.dylib 还在原来的位置,而且我们也可以通过解析.tbd 来找到他们,要使用原来的.dylib文件可以这样做:选择"Add Other"按下"CMD"+Shift+G"输入"/usr/lib".tbd 是什么经过苦苦的搜索之
2016-11-30 06:59:43
829
转载 BLE 4.2 4.1 4.0区别
The Bluetooth Special Interest Group (SIG) announced the adoption of updates to the Bluetooth 4.0 standard that shift it to version 4.1. A point iteration sounds uninteresting, but it is the first sig
2016-11-17 20:05:05
3427
原创 Code signing is required for product type 'Application' in SDK 'iOS 10.0'
升级系统和Xcode真机调试,碰到了Code signing is required for product type 'Application' in SDK 'iOS 10.0' 问题;参考http://www.cnblogs.com/gaozhang12345/p/5891364.html 逐步修改解决了问题,但是他的步骤只是对英文版的翻译,并且有些地方描述的有点模糊,所以自己整理下留
2016-10-21 07:39:52
2858
转载 @synchronized 的作用
@synchronized 的作用是创建一个互斥锁,保证此时没有其它线程对self对象进行修改。这个是objective-c的一个锁定令牌,防止self对象在同一时间内被其它线程访问,起到线程的保护作用。 一般在公用变量的时候使用,如单例模式或者操作类的static变量中使用。
2016-09-04 06:39:13
417
原创 iOS ANCS学习
ANCS 服务服务名: AppleNotification Center ServiceUUID:7905F431-B5CE-4E99-A40F-4B1E122D00D0 角色: NC:Notification Consumer (i410e) NP:Notification Provider (iOS设备)服务特征值:Notification So
2016-08-18 13:27:59
1826
原创 Application windows are expected to have a root view controller at the end of application launch'
http://stackoverflow.com/questions/7520971/applications-are-expected-to-have-a-root-view-controller-at-the-end-of-applicati343正解。
2016-07-11 07:03:09
502
转载 SVN使用教程总结
全部转自:http://www.cnblogs.com/armyfai/p/3985660.htmlSVN简介: 为什么要使用SVN? 程序员在编写程序的过程中,每个程序员都会生成很多不同的版本,这就需要程序员有效的管理代码,在需要的时候可以迅速,准确取出相应的版本。Subversion是什么? 它是一个自由/开源的版本控制系统,一
2016-06-14 19:20:22
443
转载 WARNING: 998: Failure to setup sound, err = -50
文章来自:http://blog.sina.com.cn/u/5066584704 播放音频项目的时候,出现问题解决方法:1、音频文件位置放入工程目录中,在 project->Build Phases->Copy Bundle Resources中确认音频文件是否加入,如果没有,点击+,添加2、确认代码执行中是否调用了使用AudioServicesCreateS
2016-05-31 07:18:58
1696
原创 OC学习笔记
Objective-C语言关键词,@property与@synthesize配对使用。 功能:让编译好器自动编写一个与数据成员同名的方法声明来省去读写方法的声明。多态:能够使来自不同类的对象定义相同名称的方法。动态类型;能够使程序直到执行时才能确定对象所属的类;动态绑定:能够使程序直到执行时才能确定实际要调用的对象方法。
2015-12-23 23:18:46
414
原创 IOS8开发指南学习笔记
19.1.4 响应用户关闭弹出框要在弹出框关闭时获取交换信息,需要遵守UIPopoverControllerDelegate协议。该协议提供方法popoverControllerDidDismissPopover,可以通过它响应弹出框关闭。在这个方法中还可以获取弹出框的内容视图控制器,并访问其任何属性。实现UIPopoverControllerDelegate协议首先将一个类声明为遵守
2015-06-25 06:31:13
828
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人