|
//
|
|
// Created by CFIF on 14.12.23.
|
|
//
|
|
|
|
#ifndef FLAG_PWMS_H
|
|
#define FLAG_PWMS_H
|
|
|
|
#include "PwmFlagchip.h"
|
|
#include "PwmCaptureFlagchip.h"
|
|
|
|
typedef struct {
|
|
tPwmFlagchip pwm;
|
|
tPwmIO pwmIo;
|
|
|
|
tPwmCaptureFlagchip pwmCapture;
|
|
|
|
} tPwms;
|
|
|
|
extern tPwms PWMS;
|
|
|
|
void Pwms_Init();
|
|
|
|
#endif //FLAG_PWMS_H
|