[Add] do driver, logger print to terminal
This commit is contained in:
parent
b78b742e9e
commit
8cf0077c98
|
@ -1,6 +1,4 @@
|
||||||
#include "drv_di.h"
|
#include "drv_di.h"
|
||||||
|
#include <fcntl.h>
|
||||||
void di_open()
|
#include <unistd.h>
|
||||||
{
|
#include <stdio.h>
|
||||||
|
|
||||||
}
|
|
||||||
|
|
11
drv/drv_di.h
11
drv/drv_di.h
|
@ -1,6 +1,15 @@
|
||||||
#ifndef __DRV_DI_H_
|
#ifndef __DRV_DI_H_
|
||||||
#define __DRV_DI_H_
|
#define __DRV_DI_H_
|
||||||
|
|
||||||
void di_open();
|
#define DRV_DI1 "/sys/class/gpio-input/DIN1/state"
|
||||||
|
#define DRV_DI2 "/sys/class/gpio-input/DIN2/state"
|
||||||
|
#define DRV_DI3 "/sys/class/gpio-input/DIN3/state"
|
||||||
|
#define DRV_DI4 "/sys/class/gpio-input/DIN4/state"
|
||||||
|
#define DRV_DI5 "/sys/class/gpio-input/DIN5/state"
|
||||||
|
#define DRV_DI6 "/sys/class/gpio-input/DIN6/state"
|
||||||
|
#define DRV_DI7 "/sys/class/gpio-input/DIN7/state"
|
||||||
|
#define DRV_DI8 "/sys/class/gpio-input/DIN8/state"
|
||||||
|
|
||||||
|
#define DRV_KEY "sys/class/gpio-input/FWn/state"
|
||||||
|
|
||||||
#endif
|
#endif
|
168
drv/drv_do.c
168
drv/drv_do.c
|
@ -1,164 +1,16 @@
|
||||||
#include "drv_do.h"
|
#include"drv_do.h"
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <sys/stat.h>
|
#include <unistd.h>
|
||||||
#include <sys/types.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
|
||||||
|
|
||||||
|
void drv_do_write(char *dev, char *value)
|
||||||
|
|
||||||
// 设置GPIO引脚为输出模式
|
|
||||||
int gpio_export(int gpio_num) {
|
|
||||||
int fd;
|
|
||||||
char buf[64];
|
|
||||||
|
|
||||||
// 导出GPIO,写入对应的GPIO编号
|
|
||||||
fd = open(GPIO_PATH "/export", O_WRONLY);
|
|
||||||
if (fd == -1) {
|
|
||||||
perror("Failed to open export file");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "%d", gpio_num);
|
|
||||||
if (write(fd, buf, strlen(buf)) == -1) {
|
|
||||||
perror("Failed to export GPIO");
|
|
||||||
close(fd);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
close(fd);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 设置GPIO引脚方向
|
|
||||||
int gpio_set_direction(int gpio_num, const char *direction) {
|
|
||||||
int fd;
|
|
||||||
char buf[64];
|
|
||||||
|
|
||||||
// 设置GPIO方向
|
|
||||||
snprintf(buf, sizeof(buf), GPIO_PATH "/gpio%d/direction", gpio_num);
|
|
||||||
fd = open(buf, O_WRONLY);
|
|
||||||
if (fd == -1) {
|
|
||||||
perror("Failed to open GPIO direction file");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (write(fd, direction, strlen(direction)) == -1) {
|
|
||||||
perror("Failed to set GPIO direction");
|
|
||||||
close(fd);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
close(fd);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 读取GPIO引脚值
|
|
||||||
int gpio_read_value(int gpio_num) {
|
|
||||||
int fd;
|
|
||||||
char buf[64];
|
|
||||||
char value;
|
|
||||||
|
|
||||||
// 打开GPIO值文件
|
|
||||||
snprintf(buf, sizeof(buf), GPIO_PATH "/gpio%d/value", gpio_num);
|
|
||||||
fd = open(buf, O_RDONLY);
|
|
||||||
if (fd == -1) {
|
|
||||||
perror("Failed to open GPIO value file");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 读取GPIO值
|
|
||||||
if (read(fd, &value, 1) == -1) {
|
|
||||||
perror("Failed to read GPIO value");
|
|
||||||
close(fd);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
close(fd);
|
|
||||||
return (value == '1') ? 1 : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 设置GPIO引脚值
|
|
||||||
int gpio_write_value(int gpio_num, int value) {
|
|
||||||
int fd;
|
|
||||||
char buf[64];
|
|
||||||
|
|
||||||
// 打开GPIO值文件
|
|
||||||
snprintf(buf, sizeof(buf), GPIO_PATH "/gpio%d/value", gpio_num);
|
|
||||||
fd = open(buf, O_WRONLY);
|
|
||||||
if (fd == -1) {
|
|
||||||
perror("Failed to open GPIO value file");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 写入GPIO值
|
|
||||||
if (write(fd, (value ? "1" : "0"), 1) == -1) {
|
|
||||||
perror("Failed to write GPIO value");
|
|
||||||
close(fd);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
close(fd);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 取消导出GPIO
|
|
||||||
int gpio_unexport(int gpio_num) {
|
|
||||||
int fd;
|
|
||||||
char buf[64];
|
|
||||||
|
|
||||||
// 取消导出GPIO
|
|
||||||
fd = open(GPIO_PATH "/unexport", O_WRONLY);
|
|
||||||
if (fd == -1) {
|
|
||||||
perror("Failed to open unexport file");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "%d", gpio_num);
|
|
||||||
if (write(fd, buf, strlen(buf)) == -1) {
|
|
||||||
perror("Failed to unexport GPIO");
|
|
||||||
close(fd);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
close(fd);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void do_open()
|
|
||||||
{
|
{
|
||||||
int gpio_num = 24; // 需要操作的GPIO引脚编号
|
int devFd = open(dev, O_RDWR);
|
||||||
|
if(devFd == -1) {
|
||||||
// 导出GPIO
|
printf("open device failed[%s]\n", dev);
|
||||||
if (gpio_export(gpio_num) == -1) {
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
// 设置GPIO为输出模式
|
write(devFd, value, sizeof(value));
|
||||||
if (gpio_set_direction(gpio_num, "out") == -1) {
|
|
||||||
gpio_unexport(gpio_num);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 设置GPIO值为1 (高电平)
|
|
||||||
if (gpio_write_value(gpio_num, 1) == -1) {
|
|
||||||
gpio_unexport(gpio_num);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 读取GPIO值
|
|
||||||
int value = gpio_read_value(gpio_num);
|
|
||||||
if (value != -1) {
|
|
||||||
printf("GPIO %d value: %d\n", gpio_num, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 设置GPIO值为0 (低电平)
|
|
||||||
if (gpio_write_value(gpio_num, 0) == -1) {
|
|
||||||
gpio_unexport(gpio_num);
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
close(devFd);
|
||||||
}
|
}
|
16
drv/drv_do.h
16
drv/drv_do.h
|
@ -1,8 +1,20 @@
|
||||||
#ifndef __DRV_DO_H_
|
#ifndef __DRV_DO_H_
|
||||||
#define __DRV_DO_H_
|
#define __DRV_DO_H_
|
||||||
|
|
||||||
#define GPIO_PATH "/sys/class/gpio"
|
#define DRV_DO1 "/sys/class/leds/do1/brightness"
|
||||||
|
#define DRV_DO2 "/sys/class/leds/do2/brightness"
|
||||||
|
#define DRV_DO3 "/sys/class/leds/do3/brightness"
|
||||||
|
#define DRV_DO4 "/sys/class/leds/do4/brightness"
|
||||||
|
#define DRV_DO5 "/sys/class/leds/do5/brightness"
|
||||||
|
#define DRV_DO6 "/sys/class/leds/do6/brightness"
|
||||||
|
#define DRV_LED1 "/sys/class/leds/can0/brightness"
|
||||||
|
#define DRV_LED2 "/sys/class/leds/can1/brightness"
|
||||||
|
#define DRV_LED3 "/sys/class/leds/led1/brightness"
|
||||||
|
#define DRV_LED4 "/sys/class/leds/led2/brightness"
|
||||||
|
|
||||||
void do_open();
|
#define DO_H "1"
|
||||||
|
#define DO_L "0"
|
||||||
|
|
||||||
|
void drv_do_write(char *dev, char *value);
|
||||||
|
|
||||||
#endif
|
#endif
|
|
@ -284,7 +284,7 @@ void _log_fatal(const char *file, const char *func, const int line, const char *
|
||||||
|
|
||||||
vsprintf(log_content, format, args1);
|
vsprintf(log_content, format, args1);
|
||||||
sprintf(log_str, "%s %s [%d][%d] [%s %s:%d] [FATAL] %s\n", __DATE__, __TIME__, pid, tid, file, func, line, log_content);
|
sprintf(log_str, "%s %s [%d][%d] [%s %s:%d] [FATAL] %s\n", __DATE__, __TIME__, pid, tid, file, func, line, log_content);
|
||||||
|
printf("%s", log_str);
|
||||||
pthread_mutex_lock(&mutex);
|
pthread_mutex_lock(&mutex);
|
||||||
fprintf(log_config->file_cur, "%s", log_str);
|
fprintf(log_config->file_cur, "%s", log_str);
|
||||||
fflush(log_config->file_cur);
|
fflush(log_config->file_cur);
|
||||||
|
@ -318,7 +318,7 @@ void _log_error(const char *file, const char *func, const int line, const char *
|
||||||
|
|
||||||
vsprintf(log_content, format, args1);
|
vsprintf(log_content, format, args1);
|
||||||
sprintf(log_str, "%s %s [%d][%d] [%s %s:%d] [ERROR] %s\n", __DATE__, __TIME__, pid, tid, file, func, line, log_content);
|
sprintf(log_str, "%s %s [%d][%d] [%s %s:%d] [ERROR] %s\n", __DATE__, __TIME__, pid, tid, file, func, line, log_content);
|
||||||
|
printf("%s", log_str);
|
||||||
pthread_mutex_lock(&mutex);
|
pthread_mutex_lock(&mutex);
|
||||||
|
|
||||||
fprintf(log_config->file_cur, "%s", log_str);
|
fprintf(log_config->file_cur, "%s", log_str);
|
||||||
|
@ -354,7 +354,7 @@ void _log_warn(const char *file, const char *func, const int line, const char *f
|
||||||
|
|
||||||
vsprintf(log_content, format, args1);
|
vsprintf(log_content, format, args1);
|
||||||
sprintf(log_str, "%s %s [%d][%d] [%s %s:%d] [WARN] %s\n", __DATE__, __TIME__, pid, tid, file, func, line, log_content);
|
sprintf(log_str, "%s %s [%d][%d] [%s %s:%d] [WARN] %s\n", __DATE__, __TIME__, pid, tid, file, func, line, log_content);
|
||||||
|
printf("%s", log_str);
|
||||||
pthread_mutex_lock(&mutex);
|
pthread_mutex_lock(&mutex);
|
||||||
|
|
||||||
fprintf(log_config->file_cur, "%s", log_str);
|
fprintf(log_config->file_cur, "%s", log_str);
|
||||||
|
|
22
test/test.c
22
test/test.c
|
@ -5,13 +5,12 @@
|
||||||
#include "drv_di.h"
|
#include "drv_di.h"
|
||||||
#include "drv_do.h"
|
#include "drv_do.h"
|
||||||
|
|
||||||
|
|
||||||
void runTest()
|
void runTest()
|
||||||
{
|
{
|
||||||
printf("runTest...\n");
|
printf("runTest...\n");
|
||||||
|
testDO();
|
||||||
|
testDI();
|
||||||
testCreatThreadTask();
|
testCreatThreadTask();
|
||||||
// testDI();
|
|
||||||
// testDO();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void testCreatThreadTask()
|
void testCreatThreadTask()
|
||||||
|
@ -26,20 +25,29 @@ void testCreatThreadTask()
|
||||||
|
|
||||||
void *testLoggerThread(void *arg)
|
void *testLoggerThread(void *arg)
|
||||||
{
|
{
|
||||||
printf("testLoggerThread\n");
|
|
||||||
|
|
||||||
logger_level_printf(LOGGER_DEBUG_LEVEL, "this an debug");
|
logger_level_printf(LOGGER_DEBUG_LEVEL, "this an debug");
|
||||||
logger_level_printf(LOGGER_INFO_LEVEL, "this an info");
|
logger_level_printf(LOGGER_INFO_LEVEL, "this an info");
|
||||||
logger_level_printf(LOGGER_WARN_LEVEL, "this an warn");
|
logger_level_printf(LOGGER_WARN_LEVEL, "this an warn");
|
||||||
logger_level_printf(LOGGER_ERROR_LEVEL, "this an error");
|
logger_level_printf(LOGGER_ERROR_LEVEL, "this an error");
|
||||||
|
logger_level_printf(LOGGER_FATAL_LEVEL, "this an fatal");
|
||||||
}
|
}
|
||||||
|
|
||||||
void testDI()
|
void testDI()
|
||||||
{
|
{
|
||||||
di_open();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void testDO()
|
void testDO()
|
||||||
{
|
{
|
||||||
do_open();
|
printf("test do\n");
|
||||||
|
drv_do_write(DRV_LED1, DO_L);
|
||||||
|
drv_do_write(DRV_LED2, DO_L);
|
||||||
|
drv_do_write(DRV_LED3, DO_L);
|
||||||
|
drv_do_write(DRV_LED4, DO_L);
|
||||||
|
drv_do_write(DRV_DO1, DO_L);
|
||||||
|
drv_do_write(DRV_DO2, DO_L);
|
||||||
|
drv_do_write(DRV_DO3, DO_L);
|
||||||
|
drv_do_write(DRV_DO4, DO_L);
|
||||||
|
drv_do_write(DRV_DO5, DO_L);
|
||||||
|
drv_do_write(DRV_DO6, DO_L);
|
||||||
}
|
}
|
Loading…
Reference in New Issue