Skip to content

Commit

Permalink
release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
murar8 committed Aug 1, 2021
1 parent b9aafe4 commit cb15771
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions HD44780.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 <lnzmrr@gmail.com>
*
Expand Down Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion HD44780.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 <lnzmrr@gmail.com>
*
Expand Down

0 comments on commit cb15771

Please sign in to comment.