C_SRC_FILES += unipi_sysfs.c
C_SRC_FILES += unipi_misc.c
C_SRC_FILES += unipi_platform.c
+C_SRC_FILES += unipi_tty.c
H_SRC_FILES = unipi_spi.h
H_SRC_FILES += unipi_iio.h
H_SRC_FILES += unipi_misc.h
H_SRC_FILES += unipi_platform.h
H_SRC_FILES += unipi_common.h
+H_SRC_FILES += unipi_tty.h
OBJ_FILES = src/unipi_spi.o
OBJ_FILES += src/unipi_iio.o
OBJ_FILES += src/unipi_sysfs.o
OBJ_FILES += src/unipi_misc.o
OBJ_FILES += src/unipi_platform.o
+OBJ_FILES += src/unipi_tty.o
KERNEL_MODULE_NAME = unipi
obj-m += ${KERNEL_MODULE_NAME}.o
***************/
#define NEURONSPI_SCHED_REQUIRED 0 // Older kernels do not require sched/types to be specifically imported
-#define NEURONSPI_MAJOR_VERSIONSTRING "Development Beta Version 0.03:08:03:2018"
+#define NEURONSPI_MAJOR_VERSIONSTRING "Development Beta Version 0.04:05:04:2018"
#define NEURONSPI_MAX_DEVS 3
#define NEURONSPI_MAX_UART 128
--- /dev/null
+/*
+ * UniPi Neuron tty serial driver - Copyright (C) 2018 UniPi Technologies
+ * Author: Tomas Knot <tomasknot@gmail.com>
+ *
+ * Based on the SC16IS7xx driver by Jon Ringle <jringle@gridpoint.com>,
+ * which was in turn based on max310x.c, by Alexander Shiyan <shc_work@mail.ru>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ */
+
+
--- /dev/null
+/*
+ * UniPi Neuron tty serial driver - Copyright (C) 2018 UniPi Technologies
+ * Author: Tomas Knot <tomasknot@gmail.com>
+ *
+ * Based on the SC16IS7xx driver by Jon Ringle <jringle@gridpoint.com>,
+ * which was in turn based on max310x.c, by Alexander Shiyan <shc_work@mail.ru>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ */
+
+#ifndef MODULES_UNIPI_SRC_UNIPI_TTY_H_
+#define MODULES_UNIPI_SRC_UNIPI_TTY_H_
+
+#include "unipi_common.h"
+
+
+
+#endif /* MODULES_UNIPI_SRC_UNIPI_TTY_H_ */