22 lines
216 B
C
22 lines
216 B
C
#ifndef _PWM_H_
|
|
#define _PWM_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define PWM_BASE 0x3020000U
|
|
|
|
#define CFG 0x00
|
|
|
|
#define COUNT 0x08
|
|
|
|
#define PWMS 0x10
|
|
|
|
#define CMP0 0x20
|
|
#define CMP1 0x24
|
|
#define CMP2 0x28
|
|
#define CMP3 0x2C
|
|
|
|
|
|
|
|
|