Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/blame/commit/f98a3b64d8e7de4fee7c5fefdd03f0ee44c41b2a/third-party/TeensyTimerTool/examples/99_Misc/PinInformation/PinInfo.h You should set ROOT_URL correctly, otherwise the web may not work correctly.

18 lines
297 B

#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;
};