您的位置 首页 传感器

UART的操作

@******************************************************************************@File:head.S@功能:设置SDR

@******************************************************************************

@ File:head.S
@ 功用:设置SDRAM,将程序仿制到SDRAM,然后跳到SDRAM持续履行
@******************************************************************************

.extern main
.text
.global _start
_start:
Reset:
ldr sp, =4096 @ 设置栈指针,以下都是C函数,调用前需求设好栈
bl disable_watch_dog @ 封闭WATCHDOG,不然CPU会不断重启

bl clock_init @ 设置MPLL,改动FCLK、HCLK、PCLK

bl memsetup @ 设置存储控制器以运用SDRAM
bl copy_steppingstone_to_sdram @ 仿制代码到SDRAM中
ldr pc, =on_sdram @ 跳到SDRAM中持续履行
on_sdram:
ldr sp, =0x34000000 @ 设置栈指针,
ldr lr, =halt_loop @ 设置回来地址
ldr pc, =main @ 调用main函数
halt_loop:
b halt_loop

#include “s3c24xx.h”

void disable_watch_dog(void);
void clock_init(void);
void memsetup(void);
void copy_steppingstone_to_sdram(void);

void disable_watch_dog(void)
{
WTCON = 0; // 封闭WATCHDOG很简单,往这个寄存器写0即可
}

#define S3C2410_MPLL_200MHZ ((0x5c<<12)|(0x04<<4)|(0x00))
#define S3C2440_MPLL_200MHZ ((0x5c<<12)|(0x01<<4)|(0x02)) void clock_init(void)
{
// LOCKTIME = 0x00ffffff; // 运用默认值即可
CLKDIVN = 0x03; // FCLK:HCLK:PCLK=1:2:4, HDIVN=1,PDIVN=1


__asm__(
“mrc p15, 0, r1, c1, c0, 0n”
“orr r1, r1, #0xc0000000n”
“mcr p15, 0, r1, c1, c0, 0n”
);


if ((GSTATUS1 == 0x32410000) || (GSTATUS1 == 0x32410002))
{
MPLLCON = S3C2410_MPLL_200MHZ;
}
else
{
MPLLCON = S3C2440_MPLL_200MHZ;
}
}

void memsetup(void)
{
volatile unsigned long *p = (volatile unsigned long *)MEM_CTL_BASE;



p[0] = 0x22011110; //BWSCON
p[1] = 0x00000700; //BANKCON0
p[2] = 0x00000700; //BANKCON1
p[3] = 0x00000700; //BANKCON2
p[4] = 0x00000700; //BANKCON3
p[5] = 0x00000700; //BANKCON4
p[6] = 0x00000700; //BANKCON5
p[7] = 0x00018005; //BANKCON6
p[8] = 0x00018005; //BANKCON7


p[9] = 0x008C04F4;
p[10] = 0x000000B1; //BANKSIZE
p[11] = 0x00000030; //MRSRB6
p[12] = 0x00000030; //MRSRB7
}

void copy_steppingstone_to_sdram(void)
{
unsigned int *pdwSrc = (unsigned int *)0;
unsigned int *pdwDest = (unsigned int *)0x30000000;

while (pdwSrc < (unsigned int *)4096)
{
*pdwDest = *pdwSrc;
pdwDest++;
pdwSrc++;
}
}

“serial.h”

void uart0_init(void);
void putc(unsigned char c);
unsigned char getc(void);
int isDigit(unsigned char c);
int isLetter(unsigned char c);

#include “serial.h”

int main()
{
unsigned char c;
uart0_init(); // 波特率115200,8N1(8个数据位,无校验位,1个中止位)

while(1)
{
// 从串口接纳数据后,判别其是否数字或子母,若是则加1后输出
c = getc();
if (isDigit(c) || isLetter(c))
putc(c+1);
}

return 0;
}

#include “s3c24xx.h”
#include “serial.h”

#define TXD0READY (1<<2)
#define RXD0READY (1)

#define PCLK 50000000 // init.c中的clock_init函数设置PCLK为50MHz
#define UART_CLK PCLK // UART0的时钟源设为PCLK
#define UART_BAUD_RATE 115200 // 波特率
#define UART_BRD ((UART_CLK / (UART_BAUD_RATE * 16)) – 1)

void uart0_init(void)
{
GPHCON |= 0xa0; // GPH2,GPH3用作TXD0,RXD0
GPHUP = 0x0c; // GPH2,GPH3内部上拉

ULCON0 = 0x03; // 8N1(8个数据位,无较验,1个中止位)
UCON0 = 0x05; // 查询方法,UART时钟源为PCLK
UFCON0 = 0x00; // 不运用FIFO
UMCON0 = 0x00; // 不运用流控
UBRDIV0 = UART_BRD; // 波特率为115200
}

void putc(unsigned char c)
{

while (!(UTRSTAT0 & TXD0READY));


UTXH0 = c;
}

unsigned char getc(void)
{

while (!(UTRSTAT0 & RXD0READY));


return URXH0;
}

int isDigit(unsigned char c)
{
if (c >= 0 && c <= 9)
return 1;
else
return 0;
}

int isLetter(unsigned char c)
{
if (c >= a && c <= z)
return 1;
else if (c >= A && c <= Z)
return 1;
else
return 0;
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/yingyong/chuanganqi/262656.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部