From c0870d11f019141eb1ea068eef26cc471acbedf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Israelson?= <57065102+israpps@users.noreply.github.com> Date: Thu, 22 Sep 2022 23:12:54 -0300 Subject: [PATCH] move all headers with byte buffers into `presets` --- gbs-control.ino | 34 +++++++++---------- ntsc_1280x1024.h => presets/ntsc_1280x1024.h | 0 ntsc_1280x720.h => presets/ntsc_1280x720.h | 0 ntsc_1920x1080.h => presets/ntsc_1920x1080.h | 0 ntsc_240p.h => presets/ntsc_240p.h | 0 ntsc_720x480.h => presets/ntsc_720x480.h | 0 ntsc_downscale.h => presets/ntsc_downscale.h | 0 ofw_RGBS.h => presets/ofw_RGBS.h | 0 ofw_ypbpr.h => presets/ofw_ypbpr.h | 0 pal_1280x1024.h => presets/pal_1280x1024.h | 0 pal_1280x720.h => presets/pal_1280x720.h | 0 pal_1920x1080.h => presets/pal_1920x1080.h | 0 pal_240p.h => presets/pal_240p.h | 0 pal_768x576.h => presets/pal_768x576.h | 0 pal_downscale.h => presets/pal_downscale.h | 0 .../presetDeinterlacerSection.h | 0 .../presetHdBypassSection.h | 0 .../presetMdSection.h | 0 rgbhv.h => presets/rgbhv.h | 0 tv5725.h => presets/tv5725.h | 2 +- 20 files changed, 18 insertions(+), 18 deletions(-) rename ntsc_1280x1024.h => presets/ntsc_1280x1024.h (100%) rename ntsc_1280x720.h => presets/ntsc_1280x720.h (100%) rename ntsc_1920x1080.h => presets/ntsc_1920x1080.h (100%) rename ntsc_240p.h => presets/ntsc_240p.h (100%) rename ntsc_720x480.h => presets/ntsc_720x480.h (100%) rename ntsc_downscale.h => presets/ntsc_downscale.h (100%) rename ofw_RGBS.h => presets/ofw_RGBS.h (100%) rename ofw_ypbpr.h => presets/ofw_ypbpr.h (100%) rename pal_1280x1024.h => presets/pal_1280x1024.h (100%) rename pal_1280x720.h => presets/pal_1280x720.h (100%) rename pal_1920x1080.h => presets/pal_1920x1080.h (100%) rename pal_240p.h => presets/pal_240p.h (100%) rename pal_768x576.h => presets/pal_768x576.h (100%) rename pal_downscale.h => presets/pal_downscale.h (100%) rename presetDeinterlacerSection.h => presets/presetDeinterlacerSection.h (100%) rename presetHdBypassSection.h => presets/presetHdBypassSection.h (100%) rename presetMdSection.h => presets/presetMdSection.h (100%) rename rgbhv.h => presets/rgbhv.h (100%) rename tv5725.h => presets/tv5725.h (99%) diff --git a/gbs-control.ino b/gbs-control.ino index f5efedcb..b7dfbfbf 100644 --- a/gbs-control.ino +++ b/gbs-control.ino @@ -1,22 +1,22 @@ -#include "ntsc_240p.h" -#include "pal_240p.h" -#include "ntsc_720x480.h" -#include "pal_768x576.h" -#include "ntsc_1280x720.h" -#include "ntsc_1280x1024.h" -#include "ntsc_1920x1080.h" -#include "ntsc_downscale.h" -#include "pal_1280x720.h" -#include "pal_1280x1024.h" -#include "pal_1920x1080.h" -#include "pal_downscale.h" -#include "presetMdSection.h" -#include "presetDeinterlacerSection.h" -#include "presetHdBypassSection.h" -#include "ofw_RGBS.h" +#include "presets/ntsc_240p.h" +#include "presets/pal_240p.h" +#include "presets/ntsc_720x480.h" +#include "presets/pal_768x576.h" +#include "presets/ntsc_1280x720.h" +#include "presets/ntsc_1280x1024.h" +#include "presets/ntsc_1920x1080.h" +#include "presets/ntsc_downscale.h" +#include "presets/pal_1280x720.h" +#include "presets/pal_1280x1024.h" +#include "presets/pal_1920x1080.h" +#include "presets/pal_downscale.h" +#include "presets/presetMdSection.h" +#include "presets/presetDeinterlacerSection.h" +#include "presets/presetHdBypassSection.h" +#include "presets/ofw_RGBS.h" #include -#include "tv5725.h" +#include "presets/tv5725.h" #include "framesync.h" #include "osd.h" diff --git a/ntsc_1280x1024.h b/presets/ntsc_1280x1024.h similarity index 100% rename from ntsc_1280x1024.h rename to presets/ntsc_1280x1024.h diff --git a/ntsc_1280x720.h b/presets/ntsc_1280x720.h similarity index 100% rename from ntsc_1280x720.h rename to presets/ntsc_1280x720.h diff --git a/ntsc_1920x1080.h b/presets/ntsc_1920x1080.h similarity index 100% rename from ntsc_1920x1080.h rename to presets/ntsc_1920x1080.h diff --git a/ntsc_240p.h b/presets/ntsc_240p.h similarity index 100% rename from ntsc_240p.h rename to presets/ntsc_240p.h diff --git a/ntsc_720x480.h b/presets/ntsc_720x480.h similarity index 100% rename from ntsc_720x480.h rename to presets/ntsc_720x480.h diff --git a/ntsc_downscale.h b/presets/ntsc_downscale.h similarity index 100% rename from ntsc_downscale.h rename to presets/ntsc_downscale.h diff --git a/ofw_RGBS.h b/presets/ofw_RGBS.h similarity index 100% rename from ofw_RGBS.h rename to presets/ofw_RGBS.h diff --git a/ofw_ypbpr.h b/presets/ofw_ypbpr.h similarity index 100% rename from ofw_ypbpr.h rename to presets/ofw_ypbpr.h diff --git a/pal_1280x1024.h b/presets/pal_1280x1024.h similarity index 100% rename from pal_1280x1024.h rename to presets/pal_1280x1024.h diff --git a/pal_1280x720.h b/presets/pal_1280x720.h similarity index 100% rename from pal_1280x720.h rename to presets/pal_1280x720.h diff --git a/pal_1920x1080.h b/presets/pal_1920x1080.h similarity index 100% rename from pal_1920x1080.h rename to presets/pal_1920x1080.h diff --git a/pal_240p.h b/presets/pal_240p.h similarity index 100% rename from pal_240p.h rename to presets/pal_240p.h diff --git a/pal_768x576.h b/presets/pal_768x576.h similarity index 100% rename from pal_768x576.h rename to presets/pal_768x576.h diff --git a/pal_downscale.h b/presets/pal_downscale.h similarity index 100% rename from pal_downscale.h rename to presets/pal_downscale.h diff --git a/presetDeinterlacerSection.h b/presets/presetDeinterlacerSection.h similarity index 100% rename from presetDeinterlacerSection.h rename to presets/presetDeinterlacerSection.h diff --git a/presetHdBypassSection.h b/presets/presetHdBypassSection.h similarity index 100% rename from presetHdBypassSection.h rename to presets/presetHdBypassSection.h diff --git a/presetMdSection.h b/presets/presetMdSection.h similarity index 100% rename from presetMdSection.h rename to presets/presetMdSection.h diff --git a/rgbhv.h b/presets/rgbhv.h similarity index 100% rename from rgbhv.h rename to presets/rgbhv.h diff --git a/tv5725.h b/presets/tv5725.h similarity index 99% rename from tv5725.h rename to presets/tv5725.h index 286bce8f..6843b90e 100644 --- a/tv5725.h +++ b/presets/tv5725.h @@ -1,7 +1,7 @@ #ifndef TV5725_H_ #define TV5725_H_ -#include "tw.h" +#include "../tw.h" #define GBS_ADDR 0x17 // 7 bit GBS I2C Address