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

📄 readtimer23.c

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

/***********************************************************************
Function Prototype : unsigned long ReadTimer23(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
                     TMR2 register and TMR3HLD register.
************************************************************************/
#if defined(_TIMER2) && defined(_TIMER3)

unsigned long ReadTimer23(void)
{
    unsigned long timer;
    timer = TMR2;                        /* Copy Timer2 into timer low 16bit */
    timer |= (unsigned long)TMR3HLD<<16; /* shift  16 time as TMR 3 
                                            contains MSB , TMR2 LSB */ 
    return (timer);
}

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

⌨️ 快捷键说明

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