[2.0.x][HD44780] Remove unused include

The <binary.h> header is not available in STM32 toolchain
and is not used anywhere in ultralcd_common_HD44780.h.
If it is used anywhere in HD44780 support for other platforms,
it must be included in the corresponding .cpp file directly
and put under appropriate conditional compilation directives
for the platform requiring it.

As I was unable to find such code, I consider the file unused
and hence remove the inclusion.
This commit is contained in:
Alexander Amelkin 2018-07-06 23:23:10 +03:00 committed by Scott Lahteine
parent d05e832f29
commit ed720194d2

View file

@ -52,8 +52,6 @@
#endif
#endif
#include <binary.h>
extern volatile uint8_t buttons; //an extended version of the last checked buttons in a bit array.
////////////////////////////////////
@ -199,5 +197,3 @@ enum HD44780CharSet : char {
};
#endif // ULTRALCD_COMMON_HD44780_H