⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readtimer45.c

📁 Mplab C30编译器
💻 C
字号:
#if defined(__PIC24F__)
#include <p24Fxxxx.h>
#endif
#include <timer.h>

/* These devices support Timers 4 and 5 */
#if defined(_TIMER4) && defined(_TIMER5)

/***********************************************************************
Function Prototype : unsigned long ReadTimer45(void)
 
Include            : timer.h
 
Description        : This function reads the contents of the 32-bit 
                     Timer register.
 
Arguments          : None
 
Return Value       : None
 
Remarks            : This function returns the contents of the 16-bit
                     TMR4 register and TMR5HLD register.
************************************************************************/

unsigned long ReadTimer45(void)
{
    unsigned long timer;
    timer = TMR4;                        /* Copy Timer4 into timer low 16bit */
    timer |= (unsigned long)TMR5HLD<<16; /* shift  16 time as TMR 5 
                                            contains MSB , TMR4 LSB */ 
    return (timer);
}

#else
#warning "Does not build on this target"
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -