Skip to content

Commit

Permalink
Fix bug in trig_pixel output
Browse files Browse the repository at this point in the history
  • Loading branch information
cescalara committed Apr 18, 2018
1 parent 46d8002 commit aae5252
Show file tree
Hide file tree
Showing 36 changed files with 4,456 additions and 8,802 deletions.
4 changes: 2 additions & 2 deletions l2_trigger/cpp_code/v10/l2_trigger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void l2_trigger(STREAM_32 &in_stream, STREAM_64 &out_stream, uint16_t n_pixels_i
*trig_data = 0x00000000;

//store the triggered pixel
*trig_data = i*2;
*trig_pixel = i*2;

//Block for 128 GTU
itrig = 1;
Expand All @@ -122,7 +122,7 @@ void l2_trigger(STREAM_32 &in_stream, STREAM_64 &out_stream, uint16_t n_pixels_i
*trig_data = 0x00000000;

//store the triggered pixel
*trig_data = (i*2) + 1;
*trig_pixel = (i*2) + 1;

//Block for 128 GTU
itrig = 1;
Expand Down
193 changes: 0 additions & 193 deletions l2_trigger/solution1/.autopilot/db/__ctype_info__.xml

This file was deleted.

Loading

0 comments on commit aae5252

Please sign in to comment.