博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UBoot添加命令的方法
阅读量:5267 次
发布时间:2019-06-14

本文共 1326 字,大约阅读时间需要 4 分钟。

1. 具体实现步骤

① 在./common文件夹下新建cmd_led.c,并在此文件中添加如下内容

#include 
#include
int do_led (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]){ printf("Led test start\n"); return 0;}U_BOOT_CMD( led, 2, 0, do_led, "led test command", "led test command");

 

② 在./common/Makefile中添加:

COBJS-y += cmd_led.o

 

③ 在Linux环境下,重新编译u-boot,得到u-boot.bin,并下载到自己的开发板中测试,输入help就会发现led命令

 

2.原理分析

① U_BOOT_CMD定义在include/command.h:

#define U_BOOT_CMD(name, maxargs, rep, cmd, usage, help) \cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage}

 

② Struct_Section 定义为:

#define Struct_Section  __attribute__ ((unused,section (".u_boot_cmd")))

 

③ 我们定义的led命令结构展开为:

cmd_tbl_t __u_boot_cmd_led __attribute__ ((unused, section (".u_boot_cmd")))= {
"led", 2, 0, do_led, "Led Usage", "Led Help"};

很明显,这是在定义一个cmd_tbl_t类型的变量__u_boot_cmd_led,并给他赋初值。

__attribute__((unused, section(".u_boot_cmd")))该部分是对变量的特殊声明(GNU特有),告诉编译器,该变量存放在链接脚本所指定的u_boot_cmd段。

__u_boot_cmd_start = .;    .u_boot_cmd : { *(.u_boot_cmd) }    __u_boot_cmd_end = .;

 

④ led命令执行过程:

在串口终端输入"led"命令时,串口接收到数据,并传递给run_command()函数,run_command()函数调用common/command.c中实现的find_cmd()函数在u_boot_list段内查找命令,并返回cmd_tbl_t结构。然后run_command()函数使用返回的cmd_tbl_t结构中的函数指针调用do_led(),从而完成命令的执行。

转载于:https://www.cnblogs.com/wulei0630/p/6658704.html

你可能感兴趣的文章
三维变换概述
查看>>
vue route 跳转
查看>>
【雷电】源代码分析(二)-- 进入游戏攻击
查看>>
Entityframework:“System.Data.Entity.Internal.AppConfig”的类型初始值设定项引发异常。...
查看>>
Linux中防火墙centos
查看>>
mysql新建用户,用户授权,删除用户,修改密码
查看>>
FancyCoverFlow
查看>>
JS博客
查看>>
如何设置映射网络驱动器的具体步骤和方法
查看>>
ASP.NET WebApi 基于OAuth2.0实现Token签名认证
查看>>
283. Move Zeroes把零放在最后面
查看>>
Visual Studio Code 打开.py代码报Linter pylint is not installed解决办法
查看>>
Python 数据类型
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
针对sl的ICSharpCode.SharpZipLib,只保留zip,gzip的流压缩、解压缩功能
查看>>
【转】代码中特殊的注释技术——TODO、FIXME和XXX的用处
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>