C:/nxpdrv/LPC1700CMSIS/Drivers/include/lpc17xx_pwm.h File Reference
: Contains all macro definitions and function prototypes support for PWM firmware library on LPC17xx More...
#include "LPC17xx.h"
#include "lpc_types.h"
Go to the source code of this file.
Data Structures | |
struct | PWM_TIMERCFG_Type |
Configuration structure in PWM TIMER mode. More... | |
struct | PWM_COUNTERCFG_Type |
Configuration structure in PWM COUNTER mode. More... | |
struct | PWM_MATCHCFG_Type |
PWM Match channel configuration structure. More... | |
struct | PWM_CAPTURECFG_Type |
PWM Capture Input configuration structure. More... | |
Defines | |
#define | PWM_IR_PWMMRn(n) ((uint32_t)((n<4)?(1<<n):(1<<(n+4)))) |
#define | PWM_IR_PWMCAPn(n) ((uint32_t)(1<<(n+4))) |
#define | PWM_IR_BITMASK ((uint32_t)(0x0000073F)) |
#define | PWM_TCR_BITMASK ((uint32_t)(0x0000000B)) |
#define | PWM_TCR_COUNTER_ENABLE ((uint32_t)(1<<0)) |
#define | PWM_TCR_COUNTER_RESET ((uint32_t)(1<<1)) |
#define | PWM_TCR_PWM_ENABLE ((uint32_t)(1<<3)) |
#define | PWM_CTCR_BITMASK ((uint32_t)(0x0000000F)) |
#define | PWM_CTCR_MODE(n) ((uint32_t)(n&0x03)) |
#define | PWM_CTCR_SELECT_INPUT(n) ((uint32_t)((n&0x03)<<2)) |
#define | PWM_MCR_BITMASK ((uint32_t)(0x001FFFFF)) |
#define | PWM_MCR_INT_ON_MATCH(n) ((uint32_t)(1<<(((n&0x7)<<1)+(n&0x07)))) |
#define | PWM_MCR_RESET_ON_MATCH(n) ((uint32_t)(1<<(((n&0x7)<<1)+(n&0x07)+1))) |
#define | PWM_MCR_STOP_ON_MATCH(n) ((uint32_t)(1<<(((n&0x7)<<1)+(n&0x07)+2))) |
#define | PWM_CCR_BITMASK ((uint32_t)(0x0000003F)) |
#define | PWM_CCR_CAP_RISING(n) ((uint32_t)(1<<(((n&0x2)<<1)+(n&0x1)))) |
#define | PWM_CCR_CAP_FALLING(n) ((uint32_t)(1<<(((n&0x2)<<1)+(n&0x1)+1))) |
#define | PWM_CCR_INT_ON_CAP(n) ((uint32_t)(1<<(((n&0x2)<<1)+(n&0x1)+2))) |
#define | PWM_PCR_BITMASK (uint32_t)0x00007E7C |
#define | PWM_PCR_PWMSELn(n) ((uint32_t)(((n&0x7)<2) ? 0 : (1<<n))) |
#define | PWM_PCR_PWMENAn(n) ((uint32_t)(((n&0x7)<1) ? 0 : (1<<(n+8)))) |
#define | PWM_LER_BITMASK ((uint32_t)(0x0000007F)) |
#define | PWM_LER_EN_MATCHn_LATCH(n) ((uint32_t)((n<7) ? (1<<n) : 0)) |
#define | PARAM_PWMx(n) (((uint32_t *)n)==((uint32_t *)LPC_PWM1)) |
#define | PARAM_PWM1_MATCH_CHANNEL(n) ((n>=0) && (n<=6)) |
#define | PARAM_PWM1_CHANNEL(n) ((n>=1) && (n<=6)) |
#define | PARAM_PWM1_EDGE_MODE_CHANNEL(n) ((n>=2) && (n<=6)) |
#define | PARAM_PWM1_CAPTURE_CHANNEL(n) ((n==0) || (n==1)) |
#define | PARAM_PWM_TC_MODE(n) ((n==PWM_MODE_TIMER) || (n==PWM_MODE_COUNTER)) |
#define | PARAM_PWM_TIMER_PRESCALE(n) ((n==PWM_TIMER_PRESCALE_TICKVAL) || (n==PWM_TIMER_PRESCALE_USVAL)) |
#define | PARAM_PWM_COUNTER_INPUTSEL(n) ((n==PWM_COUNTER_PCAP1_0) || (n==PWM_COUNTER_PCAP1_1)) |
#define | PARAM_PWM_COUNTER_EDGE(n) |
#define | PARAM_PWM_CHANNEL_EDGE(n) ((n==PWM_CHANNEL_SINGLE_EDGE) || (n==PWM_CHANNEL_DUAL_EDGE)) |
#define | PARAM_PWM_MATCH_UPDATE(n) ((n==PWM_MATCH_UPDATE_NOW) || (n==PWM_MATCH_UPDATE_NEXT_RST)) |
#define | PARAM_PWM_INTSTAT(n) |
Enumerations | |
enum | PWM_TC_MODE_OPT { PWM_MODE_TIMER = 0, PWM_MODE_COUNTER } |
PMW TC mode select option. More... | |
enum | PWM_TIMER_PRESCALE_OPT { PWM_TIMER_PRESCALE_TICKVAL = 0, PWM_TIMER_PRESCALE_USVAL } |
PWM Timer/Counter prescale option. More... | |
enum | PWM_COUNTER_INPUTSEL_OPT { PWM_COUNTER_PCAP1_0 = 0, PWM_COUNTER_PCAP1_1 } |
PWM Input Select in counter mode. More... | |
enum | PWM_COUNTER_EDGE_OPT { PWM_COUNTER_RISING = 1, PWM_COUNTER_FALLING = 2, PWM_COUNTER_ANY = 3 } |
PWM Input Edge Option in counter mode. More... | |
enum | PWM_CHANNEL_EDGE_OPT { PWM_CHANNEL_SINGLE_EDGE, PWM_CHANNEL_DUAL_EDGE } |
PWM operating mode options. More... | |
enum | PWM_MATCH_UPDATE_OPT { PWM_MATCH_UPDATE_NOW = 0, PWM_MATCH_UPDATE_NEXT_RST } |
PWM update type. More... | |
enum | PWM_INTSTAT_TYPE { PWM_INTSTAT_MR0 = PWM_IR_PWMMRn(0), PWM_INTSTAT_MR1 = PWM_IR_PWMMRn(1), PWM_INTSTAT_MR2 = PWM_IR_PWMMRn(2), PWM_INTSTAT_MR3 = PWM_IR_PWMMRn(3), PWM_INTSTAT_CAP0 = PWM_IR_PWMCAPn(0), PWM_INTSTAT_CAP1 = PWM_IR_PWMCAPn(1), PWM_INTSTAT_MR4 = PWM_IR_PWMMRn(4), PWM_INTSTAT_MR6 = PWM_IR_PWMMRn(5), PWM_INTSTAT_MR5 = PWM_IR_PWMMRn(6) } |
PWM interrupt status type definition -----------------------------------------------------. More... | |
Functions | |
void | PWM_PinConfig (LPC_PWM_TypeDef *PWMx, uint8_t PWM_Channel, uint8_t PinselOption) |
IntStatus | PWM_GetIntStatus (LPC_PWM_TypeDef *PWMx, uint32_t IntFlag) |
Check whether specified interrupt flag in PWM is set or not. | |
void | PWM_ClearIntPending (LPC_PWM_TypeDef *PWMx, uint32_t IntFlag) |
Clear specified PWM Interrupt pending. | |
void | PWM_ConfigStructInit (uint8_t PWMTimerCounterMode, void *PWM_InitStruct) |
Fills each PWM_InitStruct member with its default value:
| |
void | PWM_Init (LPC_PWM_TypeDef *PWMx, uint32_t PWMTimerCounterMode, void *PWM_ConfigStruct) |
Initializes the PWMx peripheral corresponding to the specified parameters in the PWM_ConfigStruct. | |
void | PWM_DeInit (LPC_PWM_TypeDef *PWMx) |
De-initializes the PWM peripheral registers to their default reset values. | |
void | PWM_Cmd (LPC_PWM_TypeDef *PWMx, FunctionalState NewState) |
Enable/Disable PWM peripheral. | |
void | PWM_CounterCmd (LPC_PWM_TypeDef *PWMx, FunctionalState NewState) |
Enable/Disable Counter in PWM peripheral. | |
void | PWM_ResetCounter (LPC_PWM_TypeDef *PWMx) |
Reset Counter in PWM peripheral. | |
void | PWM_ConfigMatch (LPC_PWM_TypeDef *PWMx, PWM_MATCHCFG_Type *PWM_MatchConfigStruct) |
Configures match for PWM peripheral. | |
void | PWM_ConfigCapture (LPC_PWM_TypeDef *PWMx, PWM_CAPTURECFG_Type *PWM_CaptureConfigStruct) |
Configures capture input for PWM peripheral. | |
uint32_t | PWM_GetCaptureValue (LPC_PWM_TypeDef *PWMx, uint8_t CaptureChannel) |
Read value of capture register PWM peripheral. | |
void | PWM_MatchUpdate (LPC_PWM_TypeDef *PWMx, uint8_t MatchChannel, uint32_t MatchValue, uint8_t UpdateType) |
Update value for each PWM channel with update type option. | |
void | PWM_ChannelConfig (LPC_PWM_TypeDef *PWMx, uint8_t PWMChannel, uint8_t ModeOption) |
Configure Edge mode for each PWM channel. | |
void | PWM_ChannelCmd (LPC_PWM_TypeDef *PWMx, uint8_t PWMChannel, FunctionalState NewState) |
Enable/Disable PWM channel output. |
Detailed Description
: Contains all macro definitions and function prototypes support for PWM firmware library on LPC17xx
- Version:
- : 1.0
- Date:
- : 22. Apr. 2009
- Author:
- : HieuNguyen
Definition in file lpc17xx_pwm.h.
Generated on Mon Feb 8 10:01:40 2010 for LPC1700CMSIS Standard Peripheral Firmware Library by
