Skip to content

Commit 93979cb

Browse files
committed
Inky 7.3: Rename driver to inky73.
1 parent 0067b10 commit 93979cb

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

drivers/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ add_subdirectory(pms5003)
4141
add_subdirectory(sh1107)
4242
add_subdirectory(st7567)
4343
add_subdirectory(psram_display)
44-
add_subdirectory(uc8159_inky7)
44+
add_subdirectory(inky73)

drivers/inky73/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include(inky73.cmake)

drivers/uc8159_inky7/uc8159_inky7.cmake renamed to drivers/inky73/inky73.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(DRIVER_NAME uc8159_inky7)
1+
set(DRIVER_NAME inky73)
22
add_library(${DRIVER_NAME} INTERFACE)
33

44
target_sources(${DRIVER_NAME} INTERFACE

drivers/uc8159_inky7/uc8159_inky7.cpp renamed to drivers/inky73/inky73.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "uc8159_inky7.hpp"
1+
#include "inky73.hpp"
22

33
#include <cstdlib>
44
#include <math.h>
File renamed without changes.

drivers/uc8159_inky7/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/inky_frame/inky_frame7_test.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ add_executable(
66
)
77

88
# Pull in pico libraries that we need
9-
target_link_libraries(${OUTPUT_NAME} pico_stdlib psram_display uc8159_inky7 inky_frame hardware_pwm hardware_spi hardware_i2c hardware_rtc fatfs sdcard pico_graphics)
9+
target_link_libraries(${OUTPUT_NAME} pico_stdlib psram_display inky73 inky_frame hardware_pwm hardware_spi hardware_i2c hardware_rtc fatfs sdcard pico_graphics)
1010

1111
pico_enable_stdio_usb(${OUTPUT_NAME} 0)
1212

examples/inky_frame/inky_frame7_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <stdio.h>
55
#include "drivers/psram_display/psram_display.hpp"
6-
#include "drivers/uc8159_inky7/uc8159_inky7.hpp"
6+
#include "drivers/inky73/inky73.hpp"
77

88
using namespace pimoroni;
99

0 commit comments

Comments
 (0)