nearly compiling

This commit is contained in:
Jonas Zeunert
2018-12-04 17:58:23 +01:00
parent 0cb8113930
commit f03fe500db
12 changed files with 16 additions and 15 deletions

View File

@@ -15,7 +15,7 @@ namespace flippR_driver
namespace output
{
DisplayController::DisplayController(std::vector<std::shared_ptr<items::IDisplay>> displays, std::shared_ptr<utility::IOutputGPIOInterface> output_gpio_interface)
DisplayController::DisplayController(std::vector<std::shared_ptr<items::IDisplay>> displays, std::shared_ptr<IOutputGPIOInterface> output_gpio_interface)
: displays(displays), output_gpio_interface(output_gpio_interface), is_running(true)
{
this->display_cycle_thread = std::thread(&DisplayController::cycle_displays, this);