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.
17 lines
296 B
17 lines
296 B
4 years ago
|
#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;
|
||
|
};
|
||
|
}
|