此帖出自模拟与混合信号论坛
最新回复
就是在出错的哪一行后面给enter,不是前面
u8 RTC_Get_Week(u16 year,u8 month,u8 day)
{
u16 temp2;
u8 yearH,yearL;
yearH=year/100; yearL=year%100;
// 如果为21世纪,年份数加100
if (yearH>19)yearL+=100;
// 所过闰年数只算1900年之后的
temp2=yearL+yearL/4;
temp2=temp2%7;
temp2=temp2+day+table_week[month-1];
if (yearL%4==0&&month
详情
回复
发表于 2012-10-19 09:37
| ||
|
||
| |
|
|
| |
|
|
| |
|
|
|
|
| |
|
|
| |
|
|
| |
|
|
| |
|
|
| |
|
|
| |
|
|
| |
|
|
| |
|
|
问题解决办法
此帖出自模拟与混合信号论坛
| ||
|
||
EEWorld Datasheet 技术支持