Remove useless function EEPROM_read_st

This commit is contained in:
Yuri D'Elia 2021-06-19 14:17:13 +02:00 committed by DRracer
parent 8d11ad9d2d
commit 66ee9a295f

View File

@ -1559,17 +1559,6 @@ void digitalPotWrite(int address, int value) // From Arduino DigitalPotControl e
}
#endif
void EEPROM_read_st(int pos, uint8_t* value, uint8_t size)
{
do
{
*value = eeprom_read_byte((unsigned char*)pos);
pos++;
value++;
}while(--size);
}
void st_current_init() //Initialize Digipot Motor Current
{
#ifdef MOTOR_CURRENT_PWM_XY_PIN