You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
I fiddle with the STM32F1 Blue Pill Board and got the Problem with Hardware Timer
src\main.cpp:137:37: error: no matching function for call to 'HardwareTimer::attachInterrupt(void (*)())'
void __Timer1()
{
}
void SetupTimer()
{
Timer1.setPeriod(1000000); // in microseconds = 1 second
Timer1.attachInterrupt(&__Timer1);
Timer1.resume();
}
I read that something changed in Core 1.9
The text was updated successfully, but these errors were encountered:
Hello
I fiddle with the STM32F1 Blue Pill Board and got the Problem with Hardware Timer
src\main.cpp:137:37: error: no matching function for call to 'HardwareTimer::attachInterrupt(void (*)())'
void __Timer1()
{
}
void SetupTimer()
{
Timer1.setPeriod(1000000); // in microseconds = 1 second
Timer1.attachInterrupt(&__Timer1);
Timer1.resume();
}
I read that something changed in Core 1.9
The text was updated successfully, but these errors were encountered: