上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 第十三题 int CountBits(unsigned int x) { int count=0; while(x) { count++; x = x&(x-1); } return count; }知识点讲... 阅读全文
posted @ 2014-09-23 06:56 tanghuimin0713 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 第九题#include int main(){ float f=0.0f; int i; for(i=0;i”“int main(){ int a = 1,2; printf("a : %d\n",a); retur... 阅读全文
posted @ 2014-09-23 06:49 tanghuimin0713 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 第六题 #include int main() { int a=10; switch(a) { case '1': printf("ONE\n"); ... 阅读全文
posted @ 2014-09-23 06:42 tanghuimin0713 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 第一题 #include #define TOTAL_ELEMENTS (sizeof(array) / sizeof(array[0])) int array[] = {23,34,12,17,204,99,16}; int main() { int d; for(d... 阅读全文
posted @ 2014-09-23 06:18 tanghuimin0713 阅读(754) 评论(2) 推荐(0) 编辑
摘要: 本文接上一篇:http://www.cnblogs.com/tanghuimin0713/p/3965528.html6.3)重新编译,烧写,运行U-Boot 2010.03 (Sep 10 2014 - 23:39:40) for SMDK6410CPU: S3C6410@533MHz ... 阅读全文
posted @ 2014-09-11 00:35 tanghuimin0713 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 开发环境:开发板 FriendlyARM Tiny6410主机 CentOS release 6.4 (Final)参考:http://www.cnblogs.com/plinx/archive/2013/03/15/2960925.htmlhttp://www.cnblogs.com/plinx/... 阅读全文
posted @ 2014-09-11 00:30 tanghuimin0713 阅读(1374) 评论(1) 推荐(0) 编辑
摘要: 参考:1)《USER'S MANUAL-S3C6410X》Chapter 10 GPIO, Chapter 12 VECTORED INTERRUPT CONTROLLER2)《ARM1176 JZF-S Technical Reference Manual》Chapter 2 Programmer... 阅读全文
posted @ 2014-09-01 22:52 tanghuimin0713 阅读(498) 评论(0) 推荐(0) 编辑
摘要: 参考:https://docs.docker.com/examples/running_ssh_service/1.创建一个空目录用于存放Dockerfilemkdir -p/home/thm/docker/test/new_imagevim DockerfileDockerfile的内容为: F... 阅读全文
posted @ 2014-08-28 17:48 tanghuimin0713 阅读(2132) 评论(0) 推荐(0) 编辑
摘要: 方法一:docker commit1. 跑一个basic image,docker新建了一个容器root@ubuntu:/home/thm/docker/test# docker run -i -t tanghuimin0713/ubuntu_amd64:14.04 /bin/bash WARNIN... 阅读全文
posted @ 2014-08-21 17:52 tanghuimin0713 阅读(1363) 评论(0) 推荐(0) 编辑
摘要: docker的安装和入门见官网教程:http://docs.docker.com/下面是自制docker basic image的步骤,以ubuntu为例。1. 安装debootstrapapt-get install debootstrap2. 创建基本系统debootstrap --arch=i... 阅读全文
posted @ 2014-08-21 10:51 tanghuimin0713 阅读(1320) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页