摘要:
Devenv"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe" dap_cpdp_2010.sln /Build "generic_risc16x32_release" MSBuildVS2010 ...
阅读全文
posted @ 2014-09-30 13:08
Justin_Ma
阅读(293)
推荐(0)
摘要:
echo offset Count=0setlocal EnableDelayedExpansionfor /l %%i in (1, 1, 9) do (set /a Count+=1set A=C:\qa\Quick-testing-for0.6.1dut-as0.6ref\Listen_Case_0!Count!_output_ea06_ref.wavset B=C:\qa\Quick-testing-for0.6.1dut-as0.6ref\Listen_Case_0!Count!_output_ea061_dut.wavecho !B!bindiff !A! !B! -q >
阅读全文
posted @ 2013-05-13 16:16
Justin_Ma
阅读(242)
推荐(0)
摘要:
采样率 采样位数 采样率:一秒内采集信号样点的次数以hz为单位 采样频率的倒数是采样周期或者叫作采样时间,它是采样之间的时间间隔20~20K是人的听觉范围 44.1k的采样率就够了 采样是为了用离散信号去表示连续的信号奈奎斯特频率 (Nyquist sampling theorem)取样频率为音频信号频率的2倍 在取样前要通过低通波率器来过滤掉高频(人不能听到)的部分模拟信号经采样和量化后,形成一系列的离散信号——脉冲数字信号噪声的三种来源 第一种是元器件产生的固有噪声,电路中几乎所有的元器件在工作时都会产生一定的噪声,晶体管、电阻、电容,这种噪声是连续的,基本上是固定不变的,并且频谱...
阅读全文
posted @ 2013-01-11 15:06
Justin_Ma
阅读(1410)
推荐(1)
摘要:
数字信号 视频 http://www.youku.com/playlist_show/id_2487082.htmlhttp://www.ee.columbia.edu/~dpwe/e6820/outline.html电子音乐原理教材在线教程http://pages.uoregon.edu/emi/chinese/index.php?id=7奈奎斯特频率取样频率为音频信号频率的2倍 在取样前要通过低通波率器来过滤掉高频(人不能听到)的部分信噪比 信噪比是音箱回放的正常声音信号与无信号时噪声信号(功率)的比值它指音源产生最大不失真声音 信噪比[1]信号强度与同时发出噪音强度之间的比率称为信号噪.
阅读全文
posted @ 2012-10-23 11:08
Justin_Ma
阅读(846)
推荐(0)
摘要:
一、下载佳明2012.30地图http://download.garmin.com/cn/download/201230/2012.30_Nuvi3750.zipJCVgmapbmap.imggmaprom.imggmap3d.img (只适用于部分机型http://www.oemce.com/thread-37-1-1.html)二、下载破解工具Garmin unlocker AlternativeKey(算号器)http://bbs.bestgps.cn/showtopic.aspx?forumid=3&forumpage=1&topicid=8&go=next三、
阅读全文
posted @ 2012-10-20 20:46
Justin_Ma
阅读(7821)
推荐(0)
摘要:
C#中ref out http://kb.cnblogs.com/a/224315/
阅读全文
posted @ 2012-04-13 23:42
Justin_Ma
阅读(152)
推荐(0)
摘要:
findstr /s /i "abc" *==========================findstr /s “.*.c" * 查找含有".c"的字符串 用的是正则表达式 注意* 前面的. .*表示一个多个字符
阅读全文
posted @ 2012-03-16 11:26
Justin_Ma
阅读(227)
推荐(0)
摘要:
#Usage: monkeyrunner recorder.py#recorder.py http://mirror.yongbok.net/linux/android/repository/platform/sdk/monkeyrunner/scripts/monkey_recorder.pyfrom com.android.monkeyrunner import MonkeyRunner as mrfrom com.android.monkeyrunner.recorder import MonkeyRecorder as recorderdevice = mr.waitForConnec
阅读全文
posted @ 2011-09-21 12:01
Justin_Ma
阅读(2235)
推荐(0)
摘要:
#Save this file as mms.py and run it by Command: MonkeyRunner mms.py# Imports the monkeyrunner modules used by this programfrom com.android.monkeyrunner import MonkeyRunner, MonkeyDevice# Connects to the current device, returning a MonkeyDevice objectdevice = MonkeyRunner.waitForConnection()# sets a
阅读全文
posted @ 2011-09-18 21:25
Justin_Ma
阅读(1727)
推荐(0)
摘要:
写一个help.py然后用命令 monkeyrunner.bat help.py即可生成help.html#help.pyfrom com.android.monkeyrunner import MonkeyRunner, MonkeyDevicetext = MonkeyRunner.help("html");f = open('help.html', 'w')f.write(text);f.close();
阅读全文
posted @ 2011-09-18 20:53
Justin_Ma
阅读(637)
推荐(0)