diff --git a/firmware/hw_layer/stepper.h b/firmware/hw_layer/stepper.h index f86f2991b6..47e7c98265 100644 --- a/firmware/hw_layer/stepper.h +++ b/firmware/hw_layer/stepper.h @@ -2,7 +2,7 @@ * @file stepper.h * * @date Dec 24, 2014 - * @author Andrey Belomutskiy, (c) 2012-2017 + * @author Andrey Belomutskiy, (c) 2012-2018 */ #ifndef STEPPER_H_ #define STEPPER_H_ diff --git a/firmware/hw_layer/tle6240.cpp b/firmware/hw_layer/tle6240.cpp new file mode 100644 index 0000000000..f3529d8d0f --- /dev/null +++ b/firmware/hw_layer/tle6240.cpp @@ -0,0 +1,17 @@ +/* + * tle6240.cpp + * + * TLE6240GP Smart 16-Channel Low-Side Switch + * + * All 16 channels can be controlled via the serial interface (SPI). In addition to the serial control it is possible to control channel 1 to 4 and 9 to 12 direct in parallel with a separate input pin. + * + * Looks like 3.3v SI and SCLK are NOT possible (H above 0.7Vs required, that's 3.5v for 5.0Vs) + * 5 MHz SPI + * + * @date Dec 29, 2018 + * @author Andrey Belomutskiy, (c) 2012-2018 + */ + + + + diff --git a/firmware/hw_layer/tle6240.h b/firmware/hw_layer/tle6240.h new file mode 100644 index 0000000000..810638181d --- /dev/null +++ b/firmware/hw_layer/tle6240.h @@ -0,0 +1,17 @@ +/* + * tle6240.h + * + * TLE6240GP Smart 16-Channel Low-Side Switch + * + * @date Dec 29, 2018 + * @author Andrey Belomutskiy, (c) 2012-2018 + */ + +#ifndef HW_LAYER_TLE6240_H_ +#define HW_LAYER_TLE6240_H_ + + + + + +#endif /* HW_LAYER_TLE6240_H_ */