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

📄 openoc4.c

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

#include <outcompare.h>

#ifdef _OCMP4
/*****************************************************************************
Function Prototype : void OpenOC4(unsigned int config, unsigned int value1, unsigned int value2);

Include            : outcompare.h
 
Description        : This function configures the Output Compare module.
 
Arguments          : config - This contains the parameters to be configured in the
					 OCxCON register as defined below					
					 Idle mode operation					
					   OC_IDLE_STOP					
					   OC_IDLE_CON					
					 Clock select					
					   OC_TIMER2_SRC					
					   OC_TIMER3_SRC					
					 Output Compare modes of operation					
					   OC_PWM_FAULT_PIN_ENABLE					
					   OC_PWM_FAULT_PIN_DISABLE					
					   OC_CONTINUE_PULSE					
					   OC_SINGLE_PULSE					
					   OC_TOGGLE_PULSE					
					   OC_HIGH_LOW					
					   OC_LOW_HIGH					
					   OC_OFF					
					 value1 - This contains the value to be stored into OCxRS Secondary					
					 Register.
					 [Note: In single compare mode, user may set this parameter 'value1' as 0x0000]					
					 value2 - This contains the value to be stored into OCxR Main					
					 Register
 
Return Value       : None
 
Remarks            : This function configures the Output Compare Module Control register
                     (OCxCON)with the following parameters:
                      Clock select, mode of operation, operation in Idle mode.
                      It also configures the OCxRS and OCxR registers.
*****************************************************************************/


void OpenOC4(unsigned int config, unsigned int value1, unsigned int value2)
{
    OC4CONbits.OCM = 0; /* turn off OC before switching to new mode */
    OC4RS = value1;     /* assign value1 to OCxRS Secondary Register */
    OC4R = value2;      /* assign value2 to OCxR Main Register*/  
    OC4CON = config;    /* assign config to OCxCON Register*/
}


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

⌨️ 快捷键说明

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