Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/blame/commit/9d81ffe3346c4f9096bfb060b9b4a66cc55f46ec/third-party/TeensyTimerTool/examples/99_Misc/PinInformation/PinInfo.h
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "GPIO_Info.h"
|
|
|
|
#include "PWM_TimerInfo.h"
|
|
|
|
|
|
|
|
struct PinInfo
|
|
|
|
{
|
|
|
|
inline PinInfo(unsigned _pin)
|
|
|
|
: pin(_pin),
|
|
|
|
gpioInfo(pin),
|
|
|
|
pwmTimerInfo(pin)
|
|
|
|
{}
|
|
|
|
|
|
|
|
const unsigned pin;
|
|
|
|
const GPIO_Info_t gpioInfo;
|
|
|
|
const PWM_TimerInfo_t pwmTimerInfo;
|
|
|
|
};
|