You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MicroDexed/third-party/TeensyTimerTool/src/Teensy/FTM/FTM_ChannelInfo.h

17 lines
296 B

#pragma once
#include "FTM_Info.h"
#include "../../types.h"
namespace TeensyTimerTool
{
struct FTM_ChannelInfo
{
bool isReserved;
bool isPeriodic;
callback_t callback;
uint32_t reload;
FTM_CH_t* chRegs;
float ticksPerMicrosecond;
};
}