File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 33using namespace deadeye ;
44
55#ifdef __aarch64__
6+ #include < cassert>
67using namespace gpiod ;
78
89LedDrive::LedDrive (int inum) {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace deadeye {
88
99class LedDrive {
1010 public:
11- explicit LedDrive ([[maybe_unused]] int inum);
11+ explicit LedDrive (int inum);
1212
1313 void On ();
1414 void Off ();
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ void Runner::Run() {
5858
5959 // Set up streaming. CScore streaming will hang on connection if too many
6060 // connections are attempted, current workaround is for user to disable and
61- // reenable the stream to reset.
61+ // re-enable the stream to reset.
6262 Streamer streamer (pipeline_.get (), capture_config_.Size ());
6363 bool stream_enabled{false };
6464
@@ -129,7 +129,7 @@ void Runner::Run() {
129129
130130 if (stream_enabled) streamer.Process (frame, target_data.get ());
131131
132- // Log frame if neccessary
132+ // Log frame if necessary
133133 if (log_enabled && --log_counter == 0 ) {
134134 logger->Log (frame, pipeline_->GetFilteredContours (),
135135 std::move (target_data));
You can’t perform that action at this time.
0 commit comments