From c4828c486ddb696dc7f1f15b66cdeee94990aa3d Mon Sep 17 00:00:00 2001 From: tstoddard Date: Wed, 6 Aug 2025 13:37:33 -0400 Subject: [PATCH] 3.1.2 --- CHANGELOG | 5 ++++- README.md | 2 +- intrepid.c | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 37977b3..6adc9db 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +v3.1.2 + Update kernel logging for dropped messages to pr_debug + Added instructions for debug message in README v3.1.1 Update copyright Fix Ethernet interfaces @@ -61,4 +64,4 @@ v2.0.1 v2.0.0 Full rewrite Initial release with CAN-FD support - Requires icsscand >= v2.0.0 \ No newline at end of file + Requires icsscand >= v2.0.0 diff --git a/README.md b/README.md index 4cf7f66..b7b3159 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Version 3.1.1 +Version 3.1.2 This is the kernel object portion of the Intrepid Control Systems SocketCAN support. For SocketCAN to work with Intrepid devices you will need to have this kernel object loaded on your system. Once the module is built and loaded run [icsscand](https://github.com/intrepidcs/icsscand) to turn on SocketCAN support. diff --git a/intrepid.c b/intrepid.c index ecbb761..5a62af9 100644 --- a/intrepid.c +++ b/intrepid.c @@ -58,7 +58,7 @@ #define KO_DESC "Netdevice driver for Intrepid CAN/Ethernet devices" #define KO_MAJOR 3 #define KO_MINOR 1 -#define KO_PATCH 1 +#define KO_PATCH 2 #define KO_VERSION str(KO_MAJOR) "." str(KO_MINOR) "." str(KO_PATCH) #define KO_VERSION_INT (KO_MAJOR << 16) | (KO_MINOR << 8) | KO_PATCH