| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 8439 人关注过本帖
标题:error: #167: argument of type "uint8 *" is incompatible with paramete ...
取消只看楼主 加入收藏
longzhimeng
Rank: 1
等 级:新手上路
帖 子:11
专家分:6
注 册:2013-5-18
结帖率:66.67%
收藏
已结贴  问题点数:10 回复次数:1 
error: #167: argument of type "uint8 *" is incompatible with paramete
uint8 *RTC_DataGet(struct DATE *d, struct TIME *t)
{
    uint8 *p;
    uint32 Times = 0;
    uint32 Dates = 0;
   
    Times = CTIME0;
    Dates = CTIME1;
   
    p= Data;
    *(p++) = '*';
    d->year = (Dates >> 16)&0xfff;
    *(p++) = (d->year/1000)+'0';
    *(p++) = (d->year%1000)/100+'0';
    *(p++) = (d->year%100)/10+'0';
    *(p++) = d->year%10+'0';
    *(p++) = '.';
    d->mon = (Dates >>8)&0x0f;
    *(p++) = d->mon/10 + '0';
    *(p++) = d->mon%10 + '0';
    *(p++) = '.';
    d->day = Dates&0x1f;
    *(p++) = d->day/10 + '0';
    *(p++) = d->day%10 + '0';
    *(p++) = ' ';
    d->week = (Times >> 24)&0x07;
    *(p++) = d->week + '0';
    *(p++) = ' ';
    t->hour = (Times >> 16)&0x1f;
    *(p++) = t->hour/10 + '0';
    *(p++) = t->hour%10 + '0';
    *(p++) = '.';
    t->min = (Times >> 8)&0x3f;
    *(p++) = t->min/10 + '0';
    *(p++) = t->min%10 + '0';
    *(p++) = '.';
    t->sec = Times&0x3f;
    *(p++) = t->sec/10 + '0';
    *(p++) = t->sec%10 + '0';
    *(p++) = '*';
    *(p++) = ' ';
    p = Data;
    return (p);        
}int main (void)
{
    uint8 x[30],y[30];
    uint8 i,*q;
   q = RTC_DataGet(x,y);  
}
 ..\user\main.c(258): error:  #167: argument of type "uint8 *" is incompatible with parameter of type "struct DATE *"
各位大仙,帮我看看 !谢谢!
搜索更多相关主题的帖子: 教练 
2013-08-24 16:22
longzhimeng
Rank: 1
等 级:新手上路
帖 子:11
专家分:6
注 册:2013-5-18
收藏
得分:0 
uint8 Data[] = " 2011.01.04 3 10.23.30  \r";
2013-08-24 16:52
快速回复:error: #167: argument of type "uint8 *" is incompatible with par ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.048425 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved