Skip to content
This repository has been archived by the owner on Jan 7, 2019. It is now read-only.

Commit

Permalink
Fix wrong nibble sent to wire
Browse files Browse the repository at this point in the history
  • Loading branch information
Álan Crístoffer authored and salkinium committed Jan 7, 2018
1 parent 6328b4a commit 42837c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpcc/driver/display/hd44780_base_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ template <typename Data, typename Enable>
void
xpcc::Hd44780Base<DATA, RW, RS, E>::Bus<Data, Enable, 4>::writeHighNibble(uint8_t data)
{
Bus<DATA, E, 8>::write(data);
Bus<DATA, E, 8>::write(data >> 4);
}

template <typename DATA, typename RW, typename RS, typename E>
Expand Down

0 comments on commit 42837c7

Please sign in to comment.