diff --git a/examples/TouchDrv_CST9217_GetPoint/TouchDrv_CST9217_GetPoint.ino b/examples/TouchDrv_CST9217_GetPoint/TouchDrv_CST9217_GetPoint.ino index 4e711a0..8548c09 100644 --- a/examples/TouchDrv_CST9217_GetPoint/TouchDrv_CST9217_GetPoint.ino +++ b/examples/TouchDrv_CST9217_GetPoint/TouchDrv_CST9217_GetPoint.ino @@ -30,7 +30,7 @@ #include #include #include -#include "touch/TouchClassCST92xx.h" +#include "TouchDrvCST92xx.h" #include "SensorWireHelper.h" diff --git a/src/touch/TouchClassCST92xx.cpp b/src/TouchDrvCST92xx.cpp similarity index 99% rename from src/touch/TouchClassCST92xx.cpp rename to src/TouchDrvCST92xx.cpp index 5444776..6b540e7 100644 --- a/src/touch/TouchClassCST92xx.cpp +++ b/src/TouchDrvCST92xx.cpp @@ -22,11 +22,11 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * - * @file TouchClassCST92xx.cpp + * @file TouchDrvCST92xx.cpp * @author Lewis He (lewishe@outlook.com) * @date 2024-07-07 */ -#include "TouchClassCST92xx.h" +#include "TouchDrvCST92xx.h" #if defined(ARDUINO) TouchClassCST92xx::TouchClassCST92xx(): diff --git a/src/touch/TouchClassCST92xx.h b/src/TouchDrvCST92xx.h similarity index 98% rename from src/touch/TouchClassCST92xx.h rename to src/TouchDrvCST92xx.h index f8ada44..dafb3ed 100644 --- a/src/touch/TouchClassCST92xx.h +++ b/src/TouchDrvCST92xx.h @@ -28,9 +28,9 @@ */ #pragma once -#include "../TouchDrvInterface.hpp" -#include "../SensorCommon.tpp" -#include "../SensorLib.h" +#include "TouchDrvInterface.hpp" +#include "SensorCommon.tpp" +#include "SensorLib.h" #include "REG/CST9xxConstants.h"