25 lines
337 B
C++
25 lines
337 B
C++
/*
|
|
Speeduino - Simple engine management for the Arduino Mega 2560 platform
|
|
Copyright (C) Josh Stewart
|
|
A full copy of the license may be found in the projects root directory
|
|
*/
|
|
|
|
/*
|
|
These functions over the PWM and stepper idle control
|
|
*/
|
|
|
|
void initialiseIdle()
|
|
{
|
|
|
|
}
|
|
|
|
void initialiseIdlePWM()
|
|
{
|
|
|
|
}
|
|
|
|
void initialiseIdleStepper()
|
|
{
|
|
|
|
}
|