代码搜索:RTC模块
找到约 10,000 项符合「RTC模块」的源代码
代码结果 10,000
www.eeworm.com/read/275329/10823708
h rtc.h
#ifndef __RTC_H__
#define __RTC_H__
#define APP_TASK_RTC_PRIO 10
#define APP_TASK_RTC_STK_SIZE 500
#ifdef RTC_GLOBALS
#define RTC_EXT
#else
#define RTC_EXT extern
www.eeworm.com/read/349412/10828460
h rtc.h
/************************************************************************************
* Copyright (c), 2004-2007,西安铭朗电子科技有限责任公司
* All rights reserved.
*
* Http: www.mlarm.com
* Email
www.eeworm.com/read/419925/10828634
o rtc.o
www.eeworm.com/read/419925/10828767
c rtc.c
#include "2440addr.h"
#include "rtc.h"
#define RGB(r,g,b) (unsigned int)( (r
www.eeworm.com/read/419925/10828769
h rtc.h
#ifndef __RTC_H
#define __RTC_H
#define FROM_BCD(n) ((((n) >> 4) * 10) + ((n) & 0xf))
#define TO_BCD(n) ((((n) / 10)
www.eeworm.com/read/419907/10829844
v rtc.v
module rtc(hrs,mts,secs,days,i_days,i_hrs,i_mts,i_secs,clk,reset);
input hrs,mts,secs,clk,reset,days;
output i_hrs,i_mts,i_secs,i_days;
wire clk;
wire reset;
wire [4:0]hrs;
wire [
www.eeworm.com/read/419655/10847956
o rtc.o
www.eeworm.com/read/419655/10848268
c rtc.c
//====================================================================
// File Name : RTC.c
// Function : S3C24X0 RTC Test
// Program : Kang, Weon Tark
// Date : May 22, 2002
// Version
www.eeworm.com/read/419655/10848289
c rtc.c
#include "def.h"
#include "option.h"
#include "2440addr.h"
#include "2440lib.h"
#include "2440slib.h"
void RTC_Display(void)
{
U16 year ;
U8 month, day ; // week
U8 hour, minute, seco
www.eeworm.com/read/419652/10848338