上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 43 下一页
摘要: 实现关联数据的查询 1 创建数据源 #创建表article Drop TABLE IF EXISTS `article`; Create TABLE `article` ( `id` int(11) NOT NULL auto_increment, `userid` int(11) NO... 阅读全文
posted @ 2014-08-06 13:48 retacn_yue 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 与springMVC的集成 需要配置以下几个方面: 1 web.xml配置spring dispatchservlet MybatisDemo contextConfigLocation classpath:config/applicationContext.xml sprin... 阅读全文
posted @ 2014-08-06 13:48 retacn_yue 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 中断处理如果想使用中断:1初始化A设置源头查看原理图XEINT0/kpROW0/GPN0查看芯片手册使能B设置中断控制器ThischapterdescribesthefunctionsandusageofVectoredInterruptControllerinS3C6410XRISCmicroprocessor.12.1OVERVIEWTheinterruptcontrollerintheS3C6410Xiscomposedof2VIC’s(VectoredInterruptController,ARMPrimeCellPL192)and2TZIC’s(TrustZoneInterruptC 阅读全文
posted @ 2013-07-28 16:33 retacn_yue 阅读(345) 评论(0) 推荐(1) 编辑
摘要: ARM处理器的工作模式用户模式user快速中断模式FIQ处部中断模式IRQ特权模式supervisor数据访问中止模式abort未定义指令中止模式undefined系统模式system1一上电,cpu处于supervisor(svc管理模式)2发生中断,cpu进入RIQ(外部中断模式)R13,R14切换到自已的R13,R14(R13-irq,R14-irq)跳转到0x18处执行3碰到一条机器码,cpu不认识,cpu进入undefined(未定义指令中止)模式R13,R14切换到自已的R13,R14(R13-und,R14-und)跳转到0x4执行4当程序执行swi#val,cpu会进入SVC模 阅读全文
posted @ 2013-07-28 09:32 retacn_yue 阅读(157) 评论(0) 推荐(0) 编辑
摘要: monkey 压力测试参考网址:http://developer.android.com/tools/help/monkey.htmladb shell monkey -p your.package.name -v 500robotium 自动化测试下载地址:http://code.google.com/p/robotium/downloads/list测试源程序为应用程序管理器(代码略)示例代码如下:package com.example.appexplore.test;import com.example.appexplore.MainActivity;import com.jayway. 阅读全文
posted @ 2013-07-13 23:22 retacn_yue 阅读(149) 评论(0) 推荐(0) 编辑
摘要: package com.example.launcherdemo;import android.R.integer;import android.app.Activity;import android.content.Intent;import android.os.Bundle;public class ShortcutActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);if (getIntent() 阅读全文
posted @ 2013-07-05 19:40 retacn_yue 阅读(141) 评论(0) 推荐(0) 编辑
摘要: U-boot第一个开始文件arch\arm\cpu\arm1176\start.Sstart.S文件分析:/**armboot-StartupCodeforARM1176CPU-core**Copyright(c)2007 SamsungElectronics**Copyright(C)2008*GuennadiLiakhovetki,DENXSoftwareEngineering,**SeefileCREDITSforlistofpeoplewhocontributedtothis*project.**Thisprogramisfreesoftware;youcanredistributei 阅读全文
posted @ 2013-06-03 22:18 retacn_yue 阅读(439) 评论(0) 推荐(0) 编辑
摘要: Makefile文件分析##(C)Copyright2000-2010#WolfgangDenk,DENXSoftwareEngineering,wd@denx.de.##SeefileCREDITSforlistofpeoplewhocontributedtothis#project.##Thisprogramisfreesoftware;youcanredistributeitand/or#modifyitunderthetermsoftheGNUGeneralPublicLicenseas#publishedbytheFreeSoftwareFoundatio;eitherversion 阅读全文
posted @ 2013-06-01 21:44 retacn_yue 阅读(422) 评论(0) 推荐(0) 编辑
摘要: Mkconfig文件分析#!/bin/sh-e#Scripttocreateheaderfilesandlinkstoconfigure#U-Bootforaspecificboard.##Parameters:TargetArchitectureCPUBoard[VENDOR][SOC]#@$(MKCONFIG)mini6410armarm1176mini6410samsungs3c64xx#(C)2002-2006DENXSoftwareEngineering,WolfgangDenk##***定义变量APPEND=no #Default:CreatenewconfigfileBOARD_ 阅读全文
posted @ 2013-05-31 21:29 retacn_yue 阅读(581) 评论(0) 推荐(0) 编辑
摘要: fedora 下使用openJTAG1 安装驱动#[root@localhost eclips_projects]# cp /home/retacn/Desktop/50-ftdi.rules /etc/udev/rules.d/ //查看usb设备 [root@localhost eclips_projects]# ls /dev/ttyUSB* -l 安装minicom [root@localhost eclips_projects]# yum install minicom 使用之前先运行 [root@localhost eclips_projects]# minicom-s 选取Se. 阅读全文
posted @ 2013-05-25 20:04 retacn_yue 阅读(214) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 43 下一页