project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
70 lines
1.6 KiB
C
70 lines
1.6 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <linux/input.h>
|
|
#include <sys/ioctl.h>
|
|
#include <dirent.h>
|
|
|
|
#define INPUT_DIR "/dev/input"
|
|
#define EVENT_PREFIX "event"
|
|
|
|
void check_adc_keys_event(const char *device_path) {
|
|
int fd;
|
|
char name[256] = "Unknown";
|
|
struct input_event ev;
|
|
|
|
fd = open(device_path, O_RDONLY);
|
|
if (fd < 0) {
|
|
perror("Unable to open device");
|
|
return;
|
|
}
|
|
|
|
if (ioctl(fd, EVIOCGNAME(sizeof(name)), name) < 0) {
|
|
perror("Unable to get device name");
|
|
close(fd);
|
|
return;
|
|
}
|
|
|
|
if (strstr(name, "adc-keys") != NULL) {
|
|
printf("Found ADC keys device: %s\n", device_path);
|
|
|
|
while (read(fd, &ev, sizeof(struct input_event)) > 0) {
|
|
if (ev.type == EV_KEY) {
|
|
if (ev.value == 0) {
|
|
printf("Key released: code %d\n", ev.code);
|
|
system("luckfox-config rgb_switch");
|
|
system("reboot");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
close(fd);
|
|
}
|
|
|
|
int main() {
|
|
struct dirent *entry;
|
|
DIR *dp;
|
|
|
|
|
|
dp = opendir(INPUT_DIR);
|
|
if (dp == NULL) {
|
|
perror("Unable to open /dev/input directory");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
while ((entry = readdir(dp))) {
|
|
if (strncmp(entry->d_name, EVENT_PREFIX, strlen(EVENT_PREFIX)) == 0) {
|
|
char device_path[256];
|
|
snprintf(device_path, sizeof(device_path), "%s/%s", INPUT_DIR, entry->d_name);
|
|
check_adc_keys_event(device_path);
|
|
}
|
|
}
|
|
|
|
closedir(dp);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|