📄 opentimer23.c
字号:
#if defined(__PIC24F__)
#include <p24Fxxxx.h>
#endif
#include <timer.h>
/********************************************************************
* Function Name: OpenTimer23 *
* Description: This routine configures the timer control *
* register and timer period register. *
* Parameters: config: bit definitions to configure Timer2 *
* period: value to be loaded to PR reg *
* Return Value: None *
********************************************************************/
#if defined(_TIMER2) && defined(_TIMER3)
void OpenTimer23(unsigned int config,unsigned long period)
{
TMR2 = 0; /* Reset Timer2 to 0x0000 */
TMR3 = 0; /* Reset Timer3 to 0x0000 */
PR2 = period; /* assigning Period to PR2 */
PR3 = period>>16; /* Period to PR3 Register */
T2CON = config; /* Configure timer control reg */
T2CONbits.T32 = 1;
}
#else
#warning "Does not build on this target"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -