【嵌入式开发】 嵌入式开发工具简介 (裸板调试示例 | 交叉工具链 | Makefile | 链接器脚本 | e

发布者:DazzlingSmile最新更新时间:2024-10-18 来源: cnblogs关键字:裸板调试  交叉工具链  Makefile  链接器脚本  eclipse  JLink  调试环境 手机看文章 扫描二维码
随时随地手机看文章

开发环境 : 

-- 操作系统 : Vmware11 + RedHat6.3 企业版 + Win8.1;

-- 硬件 : OK-6410-A 开发板, JLink;


一. 编译并烧写裸板程序示例

1. 设置交叉编译工具

OK-6410-A 使用 4.3.2 的交叉编译工具链, 将交叉编译工具链设置成 Ubuntu 的默认交叉编译工具链;


安装交叉编译工具链 : 解压 arm-linux-gcc-4.3.2.tgz 文件 


-- 安装命令 : 使用命令 tar -xvzf arm-linux-gcc-4.3.2.tgz -C /, 由于 tgz 压缩文件内也是存在目录结构, 解压后, 交叉编译工具链直接解压到了 /usr/local/arm/4.3.2 目录;


-- 配置环境变量 : 环境变量在 /etc/profile 中配置, 在该文件中添加如下代码 : 



ARM_LINUX='/usr/local/arm/4.3.2/bin'

export PATH=$PATH:$ARM_LINUX

-- 使配置文件生效 : 执行 source /etc/profile 命令, 该配置即可生效, 执行 arm-linux 按 tab 键 : 


octopus@octopus:~$ arm-linux-

arm-linux-addr2line  arm-linux-c++filt    arm-linux-gcc-4.3.2  arm-linux-gprof      arm-linux-objdump    arm-linux-sprite

arm-linux-ar         arm-linux-cpp        arm-linux-gcov       arm-linux-ld         arm-linux-ranlib     arm-linux-strings

arm-linux-as         arm-linux-g++        arm-linux-gdb        arm-linux-nm         arm-linux-readelf    arm-linux-strip

arm-linux-c++        arm-linux-gcc        arm-linux-gdbtui     arm-linux-objcopy    arm-linux-size  


2. 编译代码

(1) 代码示例


代码直接是开发板的示例代码:

-- led.S : 

octopus@octopus:~/arm/01_code$ more led.S 
.text
.globl _start
#define VIC0_INT	0x71200000
#define VIC1_INT	0x71300000

_start: bl reset
		ldr	pc, _undefined_instruction
		ldr	pc, _software_interrupt
		ldr	pc, _prefetch_abort
		ldr	pc, _data_abort
		ldr	pc, _not_used
		ldr	pc, _irq
		ldr	pc, _fiq
_undefined_instruction:b .
_software_interrupt:b .
_prefetch_abort:b .
_data_abort:b .
_not_used:b .
_irq:b .
_fiq:b .
reset:
		mrs	r0,cpsr
		bic	r0,r0,#0x1f
		orr	r0,r0,#0xd3
		msr	cpsr,r0

		bl set_peri_port
		bl disable_watchdog
		bl disable_irq
		bl init_led
		bl light_led

halt:
		bl halt

set_peri_port:
@告诉cpu外设的地址
	    ldr r0, =0x70000000
	    orr r0, r0, #0x13
	    mcr p15,0,r0,c15,c2,4
		mov	pc, lr

disable_watchdog:
@关闭看门狗
		ldr r0, =0x7E004000
		mov r1, #0
		str r1, [r0] @ str, store,
		mov	pc, lr

disable_irq:
@屏蔽中断
		ldr	r1, =0x0
		ldr	r0, =VIC0_INT
		str	r1, [r0]

		ldr	r1, =0x0
		ldr	r0, =VIC1_INT
		str	r1, [r0]
		mov	pc, lr

init_led:
@设置GPN为输出模式
		ldr r1, =0x7F008820
		ldr r0, =0x1111
		str r0, [r1]
		mov	pc, lr

light_led:
@点亮LED1
		ldr r1, =0x7F008824
		mov r0, #0xf
		str r0, [r1]
	    mov r0,#0xe
	    str r0,[r1]
	    mov	pc, lr

-- led.lds : 


octopus@octopus:~/arm/01_code$ more led.lds 


OUTPUT_FORMAT('elf32-littlearm', 'elf32-littlearm', 'elf32-littlearm')
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
	. = 0x50008000;

	. = ALIGN(4);
	.text :
	{
		led.o	(.text)
		*(.text)
	}

	. = ALIGN(4);
	.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }

	. = ALIGN(4);
	.data : { *(.data) }


	. = ALIGN(4);
	__bss_start = .;
	.bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
	_end = .;
}


-- Makefile : 


octopus@octopus:~/arm/01_code$ more Makefile 
all: led.o 
	arm-linux-ld -Tled.lds -o led.elf led.o
	arm-linux-objcopy -O binary led.elf led.bin
	
led.o : led.S
	arm-linux-gcc -g -o led.o -c led.S
	
.PHONY: clean
clean:
	rm *.o led.elf led.bin




(2) 编译



编译 : 在该目录执行 make 命令, 编译后多了 led.o, led.elf, led.bin 三个文件, 其中 led.bin 是要烧写到 nand flash 中的可执行二进制程序;

-- 编译前 : 

octopus@octopus:~/arm/01_code$ ls
led.lds  led.S  Makefile


-- 编译后 : 

octopus@octopus:~/arm/01_code$ make
arm-linux-gcc -g -o led.o -c led.S
arm-linux-ld -Tled.lds -o led.elf led.o
arm-linux-objcopy -O binary led.elf led.bin
octopus@octopus:~/arm/01_code$ ls
led.bin  led.elf  led.lds  led.o  led.S  Makefile




3. 烧写 led.bin



(1) 启动方式切换



sd 卡启动 : (1~8) 位置 : 0, 0, 0, 1, 1, 1, 1, 1;

nand flash 启动 : (1~8) 位置 : x, x, x, 1, 1, 0, 0, 1;

nor flash 启动 : (1~8) 位置 : x, x, x, 1, 0, 1, 0, x;




(2) 制作SD卡启动盘



详细过程参照 : http://blog.csdn.net/shulianghan/article/details/42254237#t42


(3) 串口操作



开发板串口方案一 -- 使用SecureCRT 串口连接 : 

-- 设备管理器中查看串口端口 : COM7;


-- 串口连接属性 : 


-- 连接串口 : 




开发板串口方案二 -- 打开 minicom 工具 : minicom 串口调试工具;

-- 注意 : 使用 root 用户打开, sudo minicom;


sd 卡启动 : 

-- 启动方式 : 插入 sd 卡, 将启动模式设置为 sd 卡启动, 即将 屏幕右侧的 8个开关设置成 (1~8) 位置 : 0, 0, 0, 1, 1, 1, 1, 1, 打开电源;

-- 注意 : 打开电源时 不停按 空格键;

-- 串口终端显示 : 


U-Boot 1.1.6 (Oct  9 2012 - 13:20:58) for SMDK6410


****************************************

**    u-boot 1.1.6                    **

**    Updated for OK6410  TE6410 Board  **

**    Version (2012-09-23)          **

**    OEM: Forlinx Embedded           **

**    Web: http://www.witech.com.cn   **

****************************************


CPU:     S3C6410 @532MHz

         Fclk = 532MHz, Hclk = 133MHz, Pclk = 66MHz, Serial = CLKUART (SYNC Mode) 

Board:   SMDK6410

DRAM:    256 MB

Flash:   0 kB

NandFlash Information:

Nandflash:ChipType= SLC  ChipName=MT29F16G08ABACAWP

No  No Calc pagesize, blocksize, erasesize,  use ids table .............

NandFlash:name=NAND 2GiB 1,8V 8-bit,id=38, pagesize=4096 ,chipsize=1024 MB,erasesize=524288 oobsize=128

NandFlash Size is 1024 MB 

SD/MMC:  SD 2.0 / Manufacturer: 0x1B,OEM: 'SM/00000',REV: 1.0,S/N: -1320320343,DATE: 2008/3

         MMC/SD size: 971 MiB

         Freq = 25MHz

In:      serial

Out:     lcd

Err:     lcd

Hit any key to stop autoboot:  0 


###################### User Menu for OK6410#####################

[1] Format the nand flash

[2] Burn image from SD card

[3] Burn image from USB

[4] Reboot the u-boot

[5] Exit to command line

-----------------------------Select---------------------------------

Enter your Selection: 

格式化 nand flash : 在上面的 minicom 命令行, 选择 1 ([1] Format the nand flash -- 格式化 nand Flash), 弹出 Really scrub this NAND flash? 时 选择 y;

-----------------------------Select---------------------------------
Enter your Selection:1

NAND scrub: device 0 whole chip
Warning: scrub option will erase all factory set bad blocks!
         There is no reliable way to recover them.
         Use this command only for testing purposes if you
         are sure of what you are doing!

Really scrub this NAND flash? 
Erasing at 0x3ff80000 -- 100% complete.
Scanning device for bad blocks
OK

###################### User Menu for OK6410#####################
[1] Format the nand flash
[2] Burn image from SD card
[3] Burn image from USB
[4] Reboot the u-boot
[5] Exit to command line
-----------------------------Select---------------------------------
Enter your Selection:




选择从 usb 烧写映像 : 选择 3 ([3] Burn image from USB -- 从usb烧写映像);

-----------------------------Select---------------------------------
Enter your Selection:3

##### Select the fuction #####
[1] Flash u-boot
[2] Flash kernel
[3] Flash system
[4] Exit
Enter your Selection:



选择 烧写 u-boot 类型程序 : 裸板程序都属于 u-boot 类型的;

##### Select the fuction #####
[1] Flash u-boot
[2] Flash kernel
[3] Flash system
[4] Exit
Enter your Selection:1

NAND erase: device 0 offset 0x0, size 0x200000
Erasing at 0x180000 -- 100% complete.
OK
Insert a OTG cable into the connector!


设置虚拟机的 USB 接口 : 之前写过, 详情见 http://blog.csdn.net/shulianghan/article/details/42254237#t45 ;



(3) Linux 操作



编译 led 源码 : 

-- 进入 led 源码目录 : 执行 make 命令, 将编译后的文件 拷贝到 dnw 所在目录;



烧写 led.bin : 

-- 加载 dnw 驱动 : 使用 insmod dnw_usb.ko 命令;


-- 烧写 led.bin : 使用 ./dnw led.bin 50008000 命令;


-- 串口终端显示 : 如下显示, 烧写成功;


-- 关闭开发板使用 nand flash 启动 : 可以看到 LED1 点亮;




二. 交叉工具链






1. 交叉编译器





(1) 普通编译



编译下面的代码 : 

/*************************************************************************
    > File Name: main.c
    > Author: octopus
    > Mail: octopus_work.163.com 
    > Created Time: 2015年01月03日 星期六 14时25分11秒
 ************************************************************************/

#include
int main(int argc, char** argv)
{
	printf('Hello World!n');
	return 0;
}

-- 编译执行代码 : 

[1] [2] [3] [4] [5]
关键字:裸板调试  交叉工具链  Makefile  链接器脚本  eclipse  JLink  调试环境 引用地址:【嵌入式开发】 嵌入式开发工具简介 (裸板调试示例 | 交叉工具链 | Makefile | 链接器脚本 | e

上一篇:【嵌入式开发】ARM 芯片简介 (ARM芯片类型 | ARM处理器工作模式 | ARM 寄存器 | ARM 寻址)
下一篇:Linux驱动——LED闪烁

推荐阅读最新更新时间:2024-11-17 05:12

JLink烧写2440的NOR配置
打开SEGGER\JLinkARM_V408k目录下的JFlashARM.exe。 点击File- New Project新建工程,选择Options- Project settings,切换到CPU页,勾选Use target RAM(如果不勾选这个,烧写时就不会利用2440片内的SRAM,导致烧写速度会非常慢),Addr填入40000000(2440从Nor启动时,片内的SRAM地址映射到0x40000000),大小选择4KB。 点击下方的Add按钮,Action Type选择Write 32bit,Address填入53000000(2440的看门狗寄存器地址),Data填入00000000,这是为了防止烧写大文件时,看门
[单片机]
Eclipse开发调试ARM裸机程序(五)MMU调试
代码如下: @* @ File:head.S @ 功能:设置SDRAM,将第二部分代码到SDRAM,设置页表,启动MMU, @ 然后跳到SDRAM继续执行 @* @head.S .text .global _start _start: ldr sp, =4096 @ 设置栈指针,以下都是C函数,调用前需要设好栈 bl disable_watch_dog @ 关闭WATCHDOG,否则CPU会不断重启 bl memsetup @ 设置存储控制器以使用SDRAM bl copy_2th_to_sdram @ 将第二部分代码到SDRA
[单片机]
<font color='red'>Eclipse</font>开发<font color='red'>调试</font>ARM裸机程序(五)MMU<font color='red'>调试</font>
ADS1.2使用jlink调试程序(调试芯片s3c2440 arm9)
一、软件安装 ADS1.2下载: http://down.drv5.cn/www.drv5.cn/arm ads1.2.rar jlink驱动下载: http://fastsoft.onlinedown.net/down/JLink_Windows_V630d.exe S3C2440led裸机程序(GT2440开发板的): https://download.csdn.net/download/u012577474/11249524 下载,安装上面的3个软件。 二、CodeWarrior编辑arm程序 ADS安装后,会安装以下这些工具。 这里先打开CodeWarrior,导入我们的led裸机程序。 程序目录: 导入程
[单片机]
ADS1.2使用<font color='red'>jlink</font><font color='red'>调试</font>程序(<font color='red'>调试</font>芯片s3c2440 arm9)
mini2440烧写裸机程序(MDK+Jlink)
1、实现1+2+3------+100 AREA test02,CODE,READONLY start MOV R0,#0 MOV R1,#1 MOV R2,#1 LOOP ADD R2,R2,R0 ADD R1,R1,#1 CMP R1,#101 BEQ label ADD R2,R2,R1 B LOOP label NOP NOP NOP END 2、汇编LED测试 /************************************ *注意修改段名为testLED(两处修改) *在MDK中,要添加簇文件RuninRAM.sct *在MDK中,要添加初始化文件Ext_RA
[单片机]
Jlink烧写bootloader到mini2440的Nor flash
J-Flash ARM的配置。 一般说来file-- open project里面会找到一些*.jflash的配置文件,加载他们就行了,但是没找到适合S3C2440的。所以自己建了一个mini2440.jflash,手动进行配置: j-link设置 1. 打开J-Flash ARM,并进入菜单:Options-- Project settings 2.主要设置CPU选项和Flash选项 CPU : Core -- ARM9, Little endian Use target RAM(faster)-- Addr:40000000 4KB(不选很慢;从Nor flash启动时内部Boot SRAM的地址和大小,参考S3C2440A
[单片机]
小广播
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

电子工程世界版权所有 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved