/* * pixel_constants.h * * Created on: Jun 1, 2015 * Author: Niels */ #ifndef PIXEL_CONSTANTS_H_ #define PIXEL_CONSTANTS_H_ #define CENTER_ROW 240 // Center row of pixels #define CENTER_COLUMN 255 // Center column of pixels #define CENTER_BUFFER 1023 // Center value of trigger buffer #define COLUMN_SCOPE_AREA_START 6 // scope area starts on column 6 #define COLUMN_SCOPE_AREA_STOP 504 // scope area stops on column 503 #define ROW_SCOPE_AREA_START 42 // scope area starts on row 42 #define ROW_SCOPE_AREA_STOP 438 // scope area stops on row 438 #define COLUMN_V_DIV_START 155 // Indicator marker area #define COLUMN_V_DIV_STOP 475 #define ROW_V_DIV_START 20 #define ROW_V_DIV_STOP 30 #define COLUMN_T_DIV_START 145 #define COLUMN_T_DIV_STOP 485 #define ROW_T_DIV_START 460 #define ROW_T_DIV_STOP 470 #endif /* PIXEL_CONSTANTS_H_ */