Skip to content

Commit 5b77682

Browse files
[chore] Fix filename comments to use .h (#5)
1 parent bd3a784 commit 5b77682

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

components/hub75/src/color/color_convert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file color_convert.hpp
4+
// @file color_convert.h
55
// @brief RGB565 scaling utilities for color conversion
66
//
77
// Provides functions to scale RGB565 color components (5-bit and 6-bit)

components/hub75/src/color/color_lut.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file color_lut.hpp
4+
// @file color_lut.h
55
// @brief Color lookup tables for gamma correction
66

77
#pragma once

components/hub75/src/drivers/driver_init.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file driver_init.hpp
4+
// @file driver_init.h
55
// @brief Shift driver chip initialization
66

77
#pragma once

components/hub75/src/panels/panel_layout.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33

4-
// @file panel_layout.hpp
4+
// @file panel_layout.h
55
// @brief Multi-panel layout coordinate remapping
66

77
// Based on https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA

components/hub75/src/panels/scan_patterns.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33

4-
// @file scan_patterns.hpp
4+
// @file scan_patterns.h
55
// @brief Scan pattern coordinate remapping
66

77
// Based on https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA

components/hub75/src/platforms/gdma/gdma_dma.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file gdma_dma.hpp
4+
// @file gdma_dma.h
55
// @brief ESP32-S3 LCD_CAM peripheral + GDMA for HUB75
66
//
77
// Uses ESP32-S3's LCD_CAM peripheral with direct register access

components/hub75/src/platforms/i2s/i2s_dma.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file i2s_dma.hpp
4+
// @file i2s_dma.h
55
// @brief ESP32/ESP32-S2 I2S DMA engine (LCD mode)
66
//
77
// Self-contained I2S+DMA implementation with BCM, pixel operations,

components/hub75/src/platforms/parlio/parlio_dma.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file parlio_dma.hpp
4+
// @file parlio_dma.h
55
// @brief PARLIO peripheral implementation for HUB75 (ESP32-P4/C6)
66
//
77
// Uses PARLIO TX peripheral with optional clock gating (P4 only) to

components/hub75/src/platforms/platform_detect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file platform_detect.hpp
4+
// @file platform_detect.h
55
// @brief Platform detection and DMA engine selection
66

77
#pragma once

components/hub75/src/platforms/platform_dma.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2025 Stuart Parmenter
22
// SPDX-License-Identifier: MIT
33
//
4-
// @file platform_dma.hpp
4+
// @file platform_dma.h
55
// @brief Platform-agnostic DMA interface
66
//
77
// This header provides a common interface that all platform-specific

0 commit comments

Comments
 (0)