uboot
文章平均质量分 81
码到功成
智能时代的搬运工。
简书地址https://www.jianshu.com/u/107798e4d078
展开
-
uboot最简单命令hello
#include #include static void do_hello(){ printf("hello the world!\n");}U_BOOT_CMD( hello, 1, 0, do_hello, "It is just a cmd example and print hello the world!\n", "no related help infomati原创 2013-08-02 22:28:27 · 745 阅读 · 0 评论 -
uboot下的UART驱动
今天解决了mini2440 uboot下的UART0串口驱动。本来在看过网上视频后,找到一段简单的代码即可实现,代码如下:#include "s3c24xx.h"#define TXD0READY (1<<2)#define RXD0READY (1)#define PCLK 50000000 // init.c中的clock_init函数设置PC原创 2013-08-08 22:37:16 · 2622 阅读 · 0 评论