此帖出自嵌入式系统论坛
最新回复
使用强制类型转换就可以得到指针了。
#define U1RBR (*((volatile unsigned char *) 0xE0010000))
volatile unsigned char *ptr;
ptr =&U1RBR;
LZ的这段程序貌似有错。。。
改成:
#define U1RBR ((volatile unsigned char *)0xE0010000))
volatile unsigned char *ptr;
ptr = U1RBR;
或者:
#define U1RBR (*((volatile unsigned char *) 0xE0010000))
volatile unsigned char *ptr;
ptr =*U1RBR;
试试看!
详情
回复
发表于 2007-4-1 13:30
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
| |
|
|
EEWorld Datasheet 技术支持