-
gathsrkernel
说明: LDPC校验矩阵生成,高斯消去法编码,BP译码程序,可以作为自己编写LDPC编译码程序的参考,因为matlab代码效率不高(The LDPC check matrix generation, the Gaussian elimination method and the BP decoding program can be used as the reference of the LDPC coding program, because the matlab code efficiency is not high.)
- 2019-03-26 14:56:01下载
- 积分:1
-
android 远程服务实例源码 下载
android 远程服务实例源码 下载
- 2014-02-15下载
- 积分:1
-
android 短信拦截 实例完整源码下载
可实现拦截短信,自动转发的功能。 部分代码:import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Context;import android.content.Intent;import android.content.IntentFilter;import android.os.IBinder;import android.os.PowerManager;import android.os.PowerManager.WakeLock;public class MyService extends Service{ SMSReceiver rs=null; static MyService service; private static PendingIntent pi = null; public static AlarmManager am = null; @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); service=this; pm = (PowerManager) getSystemService(Context.POWER_SERVICE); registerAlarm(); acquireWakeLock(this); registerRecever(); } @Override public void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); releaseWakeLock(); unregisterAlarm(); } private void registerRecever(){ rs=new SMSReceiver(); IntentFilter filter=new IntentFilter(); filter.addAction("android.provider.Telephony.SMS_RECEIVED"); filter.setPriority(1000); registerReceiver(rs, filter); } @Override public int onStartCommand(Intent intent, int flags, int startId) { // TODO Auto-generated method stub if(rs==null)registerRecever(); return START_STICKY; } public static WakeLock wakeLock = null; private static PowerManager pm = null; public static synchronized void acquireWakeLock(Context c) { if (null == wakeLock) { wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "smslock"); wakeLock.acquire(); } } public static synchronized void releaseWakeLock() { if (wakeLock == null) return; if (wakeLock.isHeld()) { wakeLock.release(); wakeLock = null; } } /** * 启动重复型定时器 */ public static void registerAlarm() { if(Config.getAlarm())return; Intent intent = new Intent(service, AlarmReceiver.class); pi = PendingIntent.getBroadcast(service, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT); // 设置一个PendingIntent对象,发送广播 am = (AlarmManager) service.getSystemService(Context.ALARM_SERVICE); // 获取AlarmManager对象, Config.setAlarm(true); am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 30*60*1000, pi); } /** * 取消定时器 */ public static void unregisterAlarm() { am.cancel(pi); am = null; Config.setAlarm(false); }}
- 2014-05-21下载
- 积分:1
-
Android
Android开发精要(完整扫描版)
第1章 Android的系统架构/1
第2章 Android源代码的下载和编译/16
第3章 Android组件模型解析/28
第4章 Android的Intent机制/67
第5章 组件生命周期解析/91
第6章 组件间的数据传输/129
第7章 Android控件解析/141
第8章 应用资源/205
第9章 数据存储/226
第10章 网络通信/248
第11章 地理信息服务/269
第12章 多媒体处理/284
第13章 其他重要模块/301(Android Development Essentials (full scan version) Chapter 1 of the Android system architecture/1 Chapter 2 download Android source code and compile/16 Chapter 3 Android component model parsing/28 of Chapter 4 of the Android Intent mechanisms/67 5 Zhang component lifecycle parsing/91 Chapter 6 data transfer between components/129 Chapter 7 Android controls parsing/141 Chapter 8 Application Resources/205 Chapter 9 Data Storage/226 Chapter 10 Network Communications/248 Chapter 11 Geography Information Services/269 Chapter 12 Multimedia Processing/284 Chapter 13 Other important modules/301)
- 2013-08-14 15:48:19下载
- 积分:1
-
android BaseActivity 示例代码分享
android BaseActivity 示例代码分享
- 2015-02-05下载
- 积分:1
-
Android_Gadget_CDC_driver
说明: android gadget driver
- 2019-05-23 14:07:34下载
- 积分:1
-
miniTwitter登录界面
miniTwitter登录界面
- 2014-02-12下载
- 积分:1
-
android Gallery实现异步加载网络图片实例完整源码下载(亲测通过)
android Gallery实现异步加载网络图片实例完整源码下载(亲测通过)
- 2014-05-14下载
- 积分:1
-
adm6996
Ethernet switch driver for adm6996L
- 2005-03-12 23:49:42下载
- 积分:1
-
android_capture
基于android手机的远程视频监控系统
有安卓手机端和pc服务器端
可以通过网络将手机摄像头捕捉到的数据传送到pc端以图片显示(Andrews mobile terminal and PC server-side remote video surveillance system based on android phone through the network to the mobile phone camera to capture the data transfer to the pc end display pictures)
- 2013-03-27 18:00:04下载
- 积分:1