c-like naming

This commit is contained in:
Dmitry Isaenko 2025-02-02 01:36:03 +03:00
parent 4a63e76551
commit c2327e0242
4 changed files with 8 additions and 6 deletions

View file

@ -1,10 +1,10 @@
CC = gcc
MKDIR_P = mkdir -p
APP_NAME = argbColors
APP_NAME = argb-colors
all: $(APP_NAME)
argbColors: ./src/$(APP_NAME).c
argb-colors: ./src/$(APP_NAME).c
$(MKDIR_P) ./bin
$(CC) -std=c17 -I/usr/include/ ./src/$(APP_NAME).c -lusb-1.0 -o ./bin/$(APP_NAME)

View file

@ -1,9 +1,9 @@
# argb controls for 048d:5711 Integrated Technology Express, Inc. GIGABYTE Device
# argb-colors is application for backlight adjusting. Created for VID:PID=048d:5711
[![status-badge](https://ci.redrise.ru/api/badges/13/status.svg)](https://ci.redrise.ru/repos/13)
Reference hardware used: Z890 AORUS PRO ICE
Reference hardware used: Z890 AORUS PRO ICE, 048d:5711 Integrated Technology Express, Inc. GIGABYTE Device
### udev rules

View file

@ -13,7 +13,7 @@
#include "libusb-1.0/libusb.h"
#include "argbColors.h"
#include "argb-colors.h"
#include "configuration.h"
#include "device_setup.c"
#include "init_terminate.c"
@ -57,6 +57,8 @@ int sync_flow(char* directive){
int separate_flow(){
printf("Command not recognized\n"
"Possible values are: color off impulse flash flash2 cycle\n");
}