diff --git a/Doxyfile b/Doxyfile index ea98706..d32aad7 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "HD44780" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.1.0 +PROJECT_NUMBER = 0.1.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/HD44780.c b/HD44780.c index 7abf76a..9c5d114 100644 --- a/HD44780.c +++ b/HD44780.c @@ -2,7 +2,7 @@ * @file HD44780.c %HD44780 peripheral library for stm32 microcontrollers. More information is available at the * project's home page: https://github.com/murar8/stm32-HD44780 * - * @version 0.1.0 + * @version 0.1.1 * * @author Lorenzo Murarotto * @@ -292,14 +292,14 @@ void HD44780_create_symbol(const HD44780 *lcd, uint8_t address, bool font_5x10, HD44780_write_data(lcd, symbol[i]); } -// Fill remaining pixels with whitespace. - if (font_5x10) - { - for (uint8_t i = 0; i < 6; ++i) - { - HD44780_write_data(lcd, 0); - } - } + // Fill remaining pixels with whitespace. + if (font_5x10) + { + for (uint8_t i = 0; i < 6; ++i) + { + HD44780_write_data(lcd, 0); + } + } HD44780_write_instruction(lcd, HD44780_CMD_SET_DDRAM_ADDRESS | ddram_address); } diff --git a/HD44780.h b/HD44780.h index f93d692..8cf3d41 100644 --- a/HD44780.h +++ b/HD44780.h @@ -2,7 +2,7 @@ * @file HD44780.h %HD44780 peripheral library for stm32 microcontrollers. More information is available at the * project's home page: https://github.com/murar8/stm32-HD44780 * - * @version 0.1.0 + * @version 0.1.1 * * @author Lorenzo Murarotto *