基本信息
源码名称:《嵌入式Linux应用开发完全手册》韦东山光盘
源码大小:126.47M
文件格式:.zip
开发语言:C/C++
更新时间:2021-12-27
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 5 元 
   源码介绍
《嵌入式Linux应用开发完全手册》韦东山光盘

.
├── 《嵌入式Linux应用开发完全手册》韦东山光盘
│   ├── debug(第2部分内容)
│   │   ├── examples.tar.bz2
│   │   ├── gdb-6.7.tar.bz2
│   │   ├── kgdb-2_linux2_6_22_uprev.tar.bz2
│   │   ├── memwatch-2.71.tar.gz
│   │   ├── strace-4.5.15.tar.bz2
│   │   └── strace-fix-arm-bad-syscall.patch
│   ├── drivers_and_test
│   │   └── drivers_and_test
│   │       ├── buttons
│   │       │   ├── Makefile
│   │       │   ├── button_test.c
│   │       │   └── s3c24xx_buttons.c
│   │       ├── fb_test
│   │       │   ├── Makefile
│   │       │   ├── fb.h
│   │       │   └── fb_test.c
│   │       ├── leds
│   │       │   ├── Makefile
│   │       │   ├── led_test.c
│   │       │   └── s3c24xx_leds.c
│   │       └── regeditor
│   │           ├── Makefile
│   │           └── regeditor.c
│   ├── hardware
│   │   └── hardware
│   │       ├── adc_ts
│   │       │   ├── Makefile
│   │       │   ├── adc_ts.c
│   │       │   ├── adc_ts.h
│   │       │   ├── adc_ts.lds
│   │       │   ├── head.S
│   │       │   ├── include
│   │       │   │   ├── ctype.h
│   │       │   │   ├── gcclib.h
│   │       │   │   ├── kernel.h
│   │       │   │   ├── stdio.h
│   │       │   │   ├── string.h
│   │       │   │   ├── system.h
│   │       │   │   └── types.h
│   │       │   ├── init.c
│   │       │   ├── interrupt.c
│   │       │   ├── interrupt.h
│   │       │   ├── lib
│   │       │   │   ├── Makefile
│   │       │   │   ├── ctype.c
│   │       │   │   ├── div64.S
│   │       │   │   ├── div64.h
│   │       │   │   ├── lib1funcs.S
│   │       │   │   ├── muldi3.c
│   │       │   │   ├── printf.c
│   │       │   │   ├── printf.h
│   │       │   │   ├── string.c
│   │       │   │   ├── vsprintf.c
│   │       │   │   └── vsprintf.h
│   │       │   ├── main.c
│   │       │   ├── nand.c
│   │       │   ├── s3c24xx.h
│   │       │   ├── serial.c
│   │       │   └── serial.h
│   │       ├── hello
│   │       │   └── hello.c
│   │       ├── i2c
│   │       │   ├── Makefile
│   │       │   ├── head.S
│   │       │   ├── i2c.c
│   │       │   ├── i2c.h
│   │       │   ├── i2c.lds
│   │       │   ├── include
│   │       │   │   ├── ctype.h
│   │       │   │   ├── gcclib.h
│   │       │   │   ├── kernel.h
│   │       │   │   ├── stdio.h
│   │       │   │   ├── string.h
│   │       │   │   ├── system.h
│   │       │   │   └── types.h
│   │       │   ├── init.c
│   │       │   ├── interrupt.c
│   │       │   ├── interrupt.h
│   │       │   ├── lib
│   │       │   │   ├── Makefile
│   │       │   │   ├── ctype.c
│   │       │   │   ├── div64.S
│   │       │   │   ├── div64.h
│   │       │   │   ├── lib1funcs.S
│   │       │   │   ├── muldi3.c
│   │       │   │   ├── printf.c
│   │       │   │   ├── printf.h
│   │       │   │   ├── string.c
│   │       │   │   ├── vsprintf.c
│   │       │   │   └── vsprintf.h
│   │       │   ├── m41t11.c
│   │       │   ├── m41t11.h
│   │       │   ├── main.c
│   │       │   ├── nand.c
│   │       │   ├── s3c24xx.h
│   │       │   ├── serial.c
│   │       │   └── serial.h
│   │       ├── int
│   │       │   ├── Makefile
│   │       │   ├── head.S
│   │       │   ├── init.c
│   │       │   ├── interrupt.c
│   │       │   ├── main.c
│   │       │   └── s3c24xx.h
│   │       ├── key_led
│   │       │   ├── Makefile
│   │       │   ├── crt0.S
│   │       │   └── key_led.c
│   │       ├── lcd
│   │       │   ├── Makefile
│   │       │   ├── framebuffer.c
│   │       │   ├── framebuffer.h
│   │       │   ├── head.S
│   │       │   ├── include
│   │       │   │   ├── ctype.h
│   │       │   │   ├── gcclib.h
│   │       │   │   ├── kernel.h
│   │       │   │   ├── stdio.h
│   │       │   │   ├── string.h
│   │       │   │   ├── system.h
│   │       │   │   └── types.h
│   │       │   ├── init.c
│   │       │   ├── interrupt.c
│   │       │   ├── interrupt.h
│   │       │   ├── lcd.lds
│   │       │   ├── lcddrv.c
│   │       │   ├── lcddrv.h
│   │       │   ├── lcdlib.c
│   │       │   ├── lcdlib.h
│   │       │   ├── lib
│   │       │   │   ├── Makefile
│   │       │   │   ├── ctype.c
│   │       │   │   ├── div64.S
│   │       │   │   ├── div64.h
│   │       │   │   ├── lib1funcs.S
│   │       │   │   ├── muldi3.c
│   │       │   │   ├── printf.c
│   │       │   │   ├── printf.h
│   │       │   │   ├── string.c
│   │       │   │   ├── vsprintf.c
│   │       │   │   └── vsprintf.h
│   │       │   ├── main.c
│   │       │   ├── nand.c
│   │       │   ├── s3c24xx.h
│   │       │   ├── serial.c
│   │       │   └── serial.h
│   │       ├── led_on
│   │       │   ├── Makefile
│   │       │   └── led_on.S
│   │       ├── led_on_c
│   │       │   ├── Makefile
│   │       │   ├── crt0.S
│   │       │   └── led_on_c.c
│   │       ├── leds
│   │       │   ├── Makefile
│   │       │   ├── crt0.S
│   │       │   ├── leds.c
│   │       │   └── leds.lds
│   │       ├── link
│   │       │   └── link.S
│   │       ├── mmu
│   │       │   ├── Makefile
│   │       │   ├── head.S
│   │       │   ├── init.c
│   │       │   ├── leds.c
│   │       │   └── mmu.lds
│   │       ├── nand
│   │       │   ├── Makefile
│   │       │   ├── head.S
│   │       │   ├── init.c
│   │       │   ├── main.c
│   │       │   ├── nand.c
│   │       │   └── nand.lds
│   │       ├── options
│   │       │   ├── Makefile
│   │       │   ├── main.c
│   │       │   ├── sub.c
│   │       │   └── sub.h
│   │       ├── sdram
│   │       │   ├── Makefile
│   │       │   ├── head.S
│   │       │   └── leds.c
│   │       ├── stdio
│   │       │   ├── Makefile
│   │       │   ├── head.S
│   │       │   ├── include
│   │       │   │   ├── ctype.h
│   │       │   │   ├── gcclib.h
│   │       │   │   ├── kernel.h
│   │       │   │   ├── stdio.h
│   │       │   │   ├── system.h
│   │       │   │   └── types.h
│   │       │   ├── init.c
│   │       │   ├── lib
│   │       │   │   ├── Makefile
│   │       │   │   ├── ctype.c
│   │       │   │   ├── div64.S
│   │       │   │   ├── div64.h
│   │       │   │   ├── lib1funcs.S
│   │       │   │   ├── muldi3.c
│   │       │   │   ├── printf.c
│   │       │   │   ├── printf.h
│   │       │   │   ├── string.c
│   │       │   │   ├── string.h
│   │       │   │   ├── vsprintf.c
│   │       │   │   └── vsprintf.h
│   │       │   ├── main.c
│   │       │   ├── nand.c
│   │       │   ├── s3c2410.h
│   │       │   ├── serial.c
│   │       │   ├── serial.h
│   │       │   └── stdio.lds
│   │       ├── timer
│   │       │   ├── Makefile
│   │       │   ├── head.S
│   │       │   ├── init.c
│   │       │   ├── interrupt.c
│   │       │   ├── interrupt.h
│   │       │   ├── main.c
│   │       │   ├── s3c24xx.h
│   │       │   └── timer.lds
│   │       └── uart
│   │           ├── Makefile
│   │           ├── head.S
│   │           ├── init.c
│   │           ├── main.c
│   │           ├── s3c24xx.h
│   │           ├── serial.c
│   │           ├── serial.h
│   │           └── uart.lds
│   ├── 嵌入式Linux应用开发完全手册.pdf
│   └── 光盘使用说明.txt
└── 《嵌入式Linux应用开发完全手册》韦东山光盘.zip

35 directories, 200 files