-
|
OK im probably missing something obvious, hopefully someone can help!! running the raspberry pi os i needed the source (doesnt execute .AppImage) pi@raspberrypi:~/SavvyCAN $ sudo /home/pi/Qt/6.7.0/gcc_arm64/bin/qmake Project ERROR: Unknown module(s) in QT: serialbus serialport |
Beta Was this translation helpful? Give feedback.
Replies: 22 comments 32 replies
-
|
Well, one big problem you're going to have is that SavvyCAN was written for QT5.14 while you have QT 6.7 installed. Unfortunately QT6 just won't quite result in a working copy of SavvyCAN right now. But, there has been a lot of work to get it moving in that direction. So, it may compile but after that, you will probably run into issues. What you are experiencing is that QT doesn't bundle all the add-ons with the base install. You need to install the serialbus and serialport packages as well. I don't know what they're called on Raspbian but you should be able to find them in the list of QT6 packages available. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the reply. It appears my issue is the arm architecture! I
can't find qt download for arm64 pre 6.0! I went from nothing to
cansniffing in no time flat on my x86 lol. I tried building qt from source
but have run into problems there as well. Apparently there were a handful
of bugs, now patched obviously, but I've checked 2 dozen patches.. none of
which did me any good! I am back to square 1... deflated... and tired!
We'll see what tomorrow brings.
Thanks again for your help
JR
…On Mon, Apr 29, 2024, 9:48 PM Collin Kidder ***@***.***> wrote:
Well, one big problem you're going to have is that SavvyCAN was written
for QT5.14 while you have QT 6.7 installed. Unfortunately QT6 just won't
quite result in a working copy of SavvyCAN right now. But, there has been a
lot of work to get it moving in that direction. So, it may compile but
after that, you will probably run into issues.
What you are experiencing is that QT doesn't bundle all the add-ons with
the base install. You need to install the serialbus and serialport packages
as well. I don't know what they're called on Raspbian but you should be
able to find them in the list of QT6 packages available.
—
Reply to this email directly, view it on GitHub
<#773 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AX3YM7FRW33JQFYSSHZ3XX3Y732APAVCNFSM6AAAAABG5CNSBKVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TENRZGE2TC>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
I just pushed a new version to the QT6WIP branch. This version is now at feature parity with the master branch. So, you can use the QT6WIP branch and compile with Qt6.7 on your RPI. This should yield a properly working copy of the program. I should really look into what it'd take to get a CI/CD build of SavvyCAN for ARM on the Raspberry PI. |
Beta Was this translation helpful? Give feedback.
-
|
@striork if you're still having issues compiling/running it, there is a nix package that has a build for aarch64, I got it working fine on a RPi 4 with 64-bit Raspberry Pi OS |
Beta Was this translation helpful? Give feedback.
-
|
I should mention that I've moved the QT6 support into the master branch so it should be possible to compile on QT6 (I think you might need QT6.5 or higher as they didn't add in SerialBus support in the early releases). So, it ought to compile as-is with the QT6 packages and the master branch. But, I haven't gotten around to trying it. |
Beta Was this translation helpful? Give feedback.
-
|
Finally back at the Pi! I'm attempting to cross compile QT5 (6.4.0) on my PC in order to compile savvyCAN directly on the raspi. I ran into this Apparantly a while back there were these errors in the source. They patched them up right away, Bob's your uncle and everone's cute for qt! I started looking into this one and i noticed a few people also trying to cross compile coming up with the same errors. If any of you out there with a little more experience could point me in the right direction, I'd be super appreciative .
and
|
Beta Was this translation helpful? Give feedback.
-
|
This much I can say: I've not heard of anyone successfully cross compiling it. I've heard of people who did it directly on a Raspberry Pi but I have not tried it myself. It has just always seemed like more complication than it's worth to me. I have a laptop and I drag it around to cars and only every couple of years drop a laptop or accelerate hard in a car snapping the screen off or drop a 12V lead onto the top of a can capture card while it's plugged into the laptop and fry the motherboard (yes, I've done all three of those things). So, I just use the PC version and carry a laptop. Sorry I can't be of more help. All I know is that it is possible and some people have done it. |
Beta Was this translation helpful? Give feedback.
-
|
I loaded the newest RaspberryOS onto an sdcard, updated all existing packages, then installed the following packages (sudo apt install): From there I used git clone to download the SavvyCAN source. Then in the resulting folder: This results in a full compile that takes a LONG time on an RPi4. I can compile all of SavvyCAN in about 16 seconds on my normal dev machine but it takes several minutes on the RPi. And... it works! I tested at least to be able to load the program and then load up a capture file and scroll around. I haven't tested much else and probably can't today. But, the above steps do yield a theoretically working build. All it takes is about 10 minutes of waiting when you start compiling. On an RPi5 you likely will not have to wait nearly as long. |
Beta Was this translation helpful? Give feedback.
-
|
I keep trying to figure it out myself..i made it past the that particular
error (turns out i didnt have g++ installed now on to the next error) It
now errors with the following:
***@***.***:~/SavvyCAN$ qmake6
Project ERROR: Current version of Qt (6.4.2) is too old, this project
requires Qt 6.5 or newer
Research leaads me to believe i have to Compile Qt 6.5 for use on the
Raspberry Pi, looking into how to do that is nothing short of INVOLVED...
but ill keep tinkering as time permits
Just wanted to give you some feedback and let you know I havent given up
and am still working the issues best I can.
…-Brian-
On Tue, Feb 25, 2025 at 8:57 AM sdyca ***@***.***> wrote:
Hello Brian, your voice has been heard. We have been reading about all
your struggles since last, 2024. All I can say for now is, be patient a
little more, we will get there. Collin already knows what will solve this
problem. From his comment that I have reproduced below, it looks like he
started using Raspberry Pi last year for testing.
***@***.*** <https://github.com/collin80>
collin80
on Jun 10, 2024
<#773 (reply in thread)>
Maintainer
Actually... while looking for a different board I happened across an Rpi4B
with a CAN hat on it and so I might as well give it a try. I'll install the
latest RaspberryOS and see where this adventure takes me. It may be
possible to publish compiled binaries. I think Rpi4 and Rpi5 are binary
compatible so I'm pretty sure the same executable will work for either
@bfpa40 <https://github.com/bfpa40>
bfpa40
on Jun 10, 2024
<#773 (reply in thread)>
That would be AMAZING!"
ctivity I need. So, raspberry Pi, with all its computer specifications
plus GPIO, becomes a "father" to Arduino!
Sincerely speaking, when I was look
As for me, I knew about raspberry Pi many years ago but was reluctant to
give it a trial. I dived into Arduino and later realized it does not give
me all the connectivity I need. So, raspberry Pi, with all its computer
specifications plus GPIO, becomes a "father" to Arduino!
Sincerely speaking, when I was looking for a microcomputer, I was still
reluctant to choose Raspberry Pi because I never liked hardwares that are
named after food (LOL), moreover, I prefer Strawberry to Raspberry. But
with time, my impression about Raspberry Pi began to grow because Raspberry
Pi (owned by Broadcom) has a huge community behind it, making it difficult
for its competitors to take over the lead. So the advantage of having such
a huge community kicks in when we are having problems like this; there is
someone who always give an answer to our queries.
Be happy that you have a good and reliable machine, Raspberry P, a
European technology. It is not cheap as people describe it in the internet
because by the time you finish mounting all the hardware components like
active cooler, sound card, Canbus module, hard drive HAT, etc, you will
realize that you are really buying a desktop computer! The Raspbian OS is
so reliable and solid, compared to that of most machines from Asia with
pre-installed and modified softwares. All the errors I have so far with
Raspberry Pi are as a result of my wrong installation or compilation. I
have the active cooler mounted on the microprocessor and that helps to push
down the temperature to about 40
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM643664UIKVKCC46NND2RSAEHAVCNFSM6AAAAABG5CNSBKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMZRGQZDIMA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
I GOT IT INSTALLED AND I BELIEVE ITS WORKING !!! I re-installed my
RaspberryPi 5 with the Newest Bookworm build then started all installs from
scratch. I will check it out in my vehicle tomorrow to be positive but I
DID IT. I have a rough list of what i did i9ll clean it up and make a
post! Im assuming now if I have it working on my Raspberry Pi 5 that when I
get my CM% for my uConsole the procedure should be the same...???
…On Sat, Mar 1, 2025 at 12:19 PM sdyca ***@***.***> wrote:
I keep trying to figure it out myself..i made it past the that particular
error (turns out i didnt have g++ installed now on to the next error) It
now errors with the following: *@*.***:~/SavvyCAN$ qmake6 Project ERROR:
Current version of Qt (6.4.2) is too old, this project requires Qt 6.5 or
newer Research leaads me to believe i have to Compile Qt 6.5 for use on the
Raspberry Pi, looking into how to do that is nothing short of INVOLVED...
but ill keep tinkering as time permits Just wanted to give you some
feedback and let you know I havent given up and am still working the issues
best I can.
… <#m_-2238426380771098230_>
-Brian-
Brian, I think you are right; you need Qt 6.5 or higher as stated in
Collin´s message of May 13, 2024. He said that support for SerialBus were
not added in previous versions below 6.5. This means, if I am not mistaken,
no matter how we do a work-arround to modify line 7 of the SavvyCAN.pro (in
SavvyCAN folder) to match Qt 6.4.2 as I had done, the serialbus error will
still pop up. This was the problem that I had.
As for me I don´t want to compile and install Qt 6.5 because the Pi5
pre-installed Qt6.4.2 will not be upgraded and I had bad experiences having
two versions installed. So, if you like, try the Qt 6.5 or higher and let
us know the results.
Regards.
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM67N7BBE75ZCZGM5MID2SH2ZVAVCNFSM6AAAAABG5CNSBKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMZWGE3TCOA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Just woke up and starting my morning coffee ritual. Havent tried it in the
vehicle yet but I can answer your questions
1.) What version of Qt did you use to get it installed?
I Installed Qt6.5.4
2.) Did you try modifying the SavvyCAN.pro to force installation with
Qt_6.4.2?
I commented out the 3 line starting at line 7
3.) Qt_6.4.2 is by default the version pre-loaded in the Raspberry Pi 5
depository. So if you installed version 6.5, I believe the v6.4.2 was not
upgraded; check to see how many Qt versions are currently installed on your
Pi5.
I dont believe there was any Qt loaded by default as I could get the
version command to echo anything.
More to come later.
-Brian-
…On Sun, Mar 2, 2025 at 1:36 AM sdyca ***@***.***> wrote:
I GOT IT INSTALLED AND I BELIEVE ITS WORKING !!! I re-installed my
RaspberryPi 5 with the Newest Bookworm build then started all installs from
scratch. I will check it out in my vehicle tomorrow to be positive but I
DID IT. I have a rough list of what i did i9ll clean it up and make a post!
Im assuming now if I have it working on my Raspberry Pi 5 that when I get
my CM% for my uConsole the procedure should be the same...???
… <#m_-7786679647409969674_>
I'm glad to hear that you have successfully installed the SavvyCAN. Very
important, do not forget to tell us the proceedures that you have taken,
because you have some questions to answer in order to let us understand
what was blocking your progress. I would not just settle for the fact that
you re-installed the bookworm OS to succeed, because not everyone who got
it installed had to wipe out everything from the memory just to install
only one application.
1. What version of Qt did you use to get it installed?
2. Did you try modifying the SavvyCAN.pro to force installation with
Qt_6.4.2?
3. Qt_6.4.2 is by default the version pre-loaded in the Raspberry Pi 5
depository. So if you installed version 6.5, I believe the v6.4.2 was not
upgraded; check to see how many Qt versions are currently installed on your
Pi5.
Regards.
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM65JC42WKL4KPHVNN532SKYGTAVCNFSM6AAAAABG5CNSBKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMZWGQYTIMA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
NOW this is a FANTASTIC Christmas present!! Ill be going through the
install this weekend (fingers crossed) THANK YOU Collin and anybody and
everybody else involved! Merry Christmas to you all!
…-Brian-
On Wed, Dec 17, 2025 at 12:32 PM sdyca ***@***.***> wrote:
Hello All,
This is a confirmation of a successful installation of SavvyCAN on
Raspberry PI 5, 8GB, with the latest OS Trixie 64bit.
The last time I that was struggling with this unsuccessfully in February
to March 2025, and by then by then I had the Pi 5 pre-built Qt_6.4.2
installed while SavvyCAN was compiled for Qt_6.5 and above. The reason why
I did not want to manually compile higher version of Qt is that whenever
there is an error with such application, removing all the thousands of
dependencies is a headache; moreover, it never upgrades automatically.
Once, I had to reinstall the whole corrupted OS. So Raspberry Pi Foundation
recommends using the "apt" to install applications. The advantage is that
applications can be easily removed using "Add/Remove", and whenever you use
this method to install a new version, it automatically upgrades. It would
be great if Collin adds this great application to the Raspberry Pi
repository.
As you can see from one of the attached images, the "git checkout QT6WIP"
that gave me error before is no longer a problem. And the "make -j 6" that
gave me the serial port error before is no longer a problem. All
installation went smoothly for about 5 minutes.
Wishing you all a Happy Christmas & a Blessed New Year.
SavvyCAN_Install.png (view on web)
<https://github.com/user-attachments/assets/0568ee67-d4aa-4566-8707-fe48cd05c652> SavvyCAN_1.png
(view on web)
<https://github.com/user-attachments/assets/e253b7a7-d58a-43e3-bb61-9ff841000a6a> SavvyCAN_Config1.png
(view on web)
<https://github.com/user-attachments/assets/8c6671b4-ac2c-4103-afbc-6aead95f9293> SavvyCAN_Config2.png
(view on web)
<https://github.com/user-attachments/assets/f378ecff-7bb8-42d3-9197-51db792e04c1> SavvyCAN_Sniffer.png
(view on web)
<https://github.com/user-attachments/assets/853001ea-17e9-4249-b161-57c4f9fc7091> SavvyCAN_Sniffing.png
(view on web)
<https://github.com/user-attachments/assets/e4ae737e-fbc1-467e-81d0-82a3a54e93bb>
—
Reply to this email directly, view it on GitHub
<#773 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM65FQFZFNO7G24Q4ZM34CGOS7AVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMRYGIZDMNI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
OK I am doing all of this on a uconsole with a CM5 installed. My goal is to
run the SavvyCAN off of the uconsole HOWEVER I am experiencing difficulties
getting Raspberry Pi OS Trixie the latest working on uconsole. I am
beginning to think its not compatible with it.
…On Fri, Dec 19, 2025 at 12:32 PM sdyca ***@***.***> wrote:
Brian, keep us updated on how far you have gone.
One thing that I have not yet resolved is the SavvyCAN icon. Once
everything is installed, the icon does not automatically get installed; it
has to be done manually as instructed by Collin in his Github main page for
SavvyCAN as follows:..
cd SavvyCAN
./install.sh
The desktop shortcut get installed successfully, but it is not the
expected colorful logo of SavvyCAN. I have the same problem with other
icons too, which means it may be an operative system problem. Please,
whoever has the knowledge of how to resolve this, post your solution to
help us.
This is a very simple thing to resolve in windows operating system: just
right-click any icon -> properties -> change icon.
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM6YEAUGJT5ON3IKCOET4CRADPAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZQGEZTONQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Evening Collin .. I have had a fun day of reloading my uconsole CM5 in
preparation for this.. WOOT WOOT!! Ok not that I have Trixie (Rex's build)
for the uconsole up and running I looked at your referenced image
SavvyCAN_Install.png
<https://github.com/user-attachments/assets/0568ee67-d4aa-4566-8707-fe48cd05c652>
Which
shows the steps im assuming you did up to actually tunning SavvyCAN. Well
from out original E-Mail the steps referenced were as follows:
a. sudo apt update & upgrade
b. installed all the packages given in your instructions (see the
installation log below)
c. git clone https://github.com/collin80/SavvyCAN.git
d. cd SavvyCAN
e. git checkout QT6WIP (I am not sure why this gave error, but I still
continued with the installation)
f. qmake6
g. make -j 6 The result of this execution was the 3 errors recorded by
lawicel serial port as can be seen in the log.
But in the screengrab you provided SavvyCAN_Install.png the last command i
see you issuing is (step e.) git checkout QT6WIP. I tried to issue the
qmake6 command after that however it says qmake6 command not found. I guess
after a long day screwing with this uconsole my brain is fried.. What am I
missing?
…-Brian-
|
Beta Was this translation helpful? Give feedback.
-
|
sdyca,
Thank you for the feedback. I am using Trixie 6.12
uconsole CM5/Pi5 build by Rex. I have it up and working (OS and
Hackergadgets V2 Hardware) now with this SavvyCAN is my last
stumbling block. I get down to the step where Im suppose to type in "git
checkout QT6WIP" and that works. Its the next step which is "qmake6" that
doesnt work and echoes back command not found. I have done a "which qmake6"
and it doesnt appear to be loaded. That is where I currently stand if
firing up SavvyCAN is the same thats why I was questioning collin if
those steps still need to be done which i believe they do.
…-Brian-
On Sun, Dec 21, 2025 at 9:23 AM sdyca ***@***.***> wrote:
OK I am doing all of this on a uconsole with a CM5 installed. My goal is
to run the SavvyCAN off of the uconsole HOWEVER I am experiencing
difficulties getting Raspberry Pi OS Trixie the latest working on uconsole.
I am beginning to think its not compatible with it.
… <#m_4035428336999413249_>
On Fri, Dec 19, 2025 at 12:32 PM sdyca *@*.*> wrote: Brian, keep us
updated on how far you have gone. One thing that I have not yet resolved is
the SavvyCAN icon. Once everything is installed, the icon does not
automatically get installed; it has to be done manually as instructed by
Collin in his Github main page for SavvyCAN as follows:.. cd SavvyCAN
./install.sh The desktop shortcut get installed successfully, but it is not
the expected colorful logo of SavvyCAN. I have the same problem with other
icons too, which means it may be an operative system problem. Please,
whoever has the knowledge of how to resolve this, post your solution to
help us. This is a very simple thing to resolve in windows operating
system: just right-click any icon -> properties -> change icon. — Reply to
this email directly, view it on GitHub <#773 (reply in thread)
<#773 (reply in thread)>>,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AGLVM6YEAUGJT5ON3IKCOET4CRADPAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZQGEZTONQ
<https://github.com/notifications/unsubscribe-auth/AGLVM6YEAUGJT5ON3IKCOET4CRADPAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZQGEZTONQ>
. You are receiving this because you were mentioned.Message ID: @.*>
The follow google search tells that Trixie is compatible with CM5. So you
should find the Pi5 official webpage where you can get a step by step
instructions on how best to install it.
20251221_08h55m46s_grim.png (view on web)
<https://github.com/user-attachments/assets/a03ff9c3-9d90-4893-9f67-a619c652b963>
Have a look at the following link, and you will discover that if you want
to install the SavvyCAN without problems, then the Trixie OS is your best
because...
Bookworm - is a Stable legacy OS, but it is built with Qt_6.4.2 which is
not useful for SavvyCAN.
Trixie - is the latest Stable and recommended OS, built with Qt_6.8.2
(this meets the requirements of SavvyCAN).
Forky - is built with Qt_6.9.2. Although this meets the requirements for
SavvyCAN, it is not recommended because the OS is still in its testing
phase.
Sid - is also built with Qt_6.9.2. It is an Unstable version.
https://packages.debian.org/source/trixie/qt6-base <http://url>
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM63XBUCVKPVZKPO4ABT4C23N3AVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZRGA4TQMQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
OK i installed qmake6 on my OS (Trixie) with the command "sudo apt install
qt6-base-dev" it looks to have installed and now echoes back a location
when i issue the command "which qmake6" However when I try running it from
within the SavvyCAN Directory it gives me the error seen in the
screengrab below.
[image: Screenshot From 2025-12-21 09-38-19.png]
Now this version of Trixie i am running is built by Rex for uconsole use. I
know for a fact its been tinkered with as far as what packages are
installed. If someone can provide what packages I need installed I can
chase them all down and see if they are there or not.
…-Brian-
On Sun, Dec 21, 2025 at 9:32 AM Someone ***@***.***> wrote:
sdyca,
Thank you for the feedback. I am using Trixie 6.12
uconsole CM5/Pi5 build by Rex. I have it up and working (OS and
Hackergadgets V2 Hardware) now with this SavvyCAN is my last
stumbling block. I get down to the step where Im suppose to type in "git
checkout QT6WIP" and that works. Its the next step which is "qmake6" that
doesnt work and echoes back command not found. I have done a "which qmake6"
and it doesnt appear to be loaded. That is where I currently stand if
firing up SavvyCAN is the same thats why I was questioning collin if
those steps still need to be done which i believe they do.
-Brian-
On Sun, Dec 21, 2025 at 9:23 AM sdyca ***@***.***> wrote:
> OK I am doing all of this on a uconsole with a CM5 installed. My goal is
> to run the SavvyCAN off of the uconsole HOWEVER I am experiencing
> difficulties getting Raspberry Pi OS Trixie the latest working on uconsole.
> I am beginning to think its not compatible with it.
> … <#m_851283274803335110_m_4035428336999413249_>
> On Fri, Dec 19, 2025 at 12:32 PM sdyca *@*.*> wrote: Brian, keep us
> updated on how far you have gone. One thing that I have not yet resolved is
> the SavvyCAN icon. Once everything is installed, the icon does not
> automatically get installed; it has to be done manually as instructed by
> Collin in his Github main page for SavvyCAN as follows:.. cd SavvyCAN
> ./install.sh The desktop shortcut get installed successfully, but it is not
> the expected colorful logo of SavvyCAN. I have the same problem with other
> icons too, which means it may be an operative system problem. Please,
> whoever has the knowledge of how to resolve this, post your solution to
> help us. This is a very simple thing to resolve in windows operating
> system: just right-click any icon -> properties -> change icon. — Reply to
> this email directly, view it on GitHub <#773 (reply in thread)
> <#773 (reply in thread)>>,
> or unsubscribe
> https://github.com/notifications/unsubscribe-auth/AGLVM6YEAUGJT5ON3IKCOET4CRADPAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZQGEZTONQ
> <https://github.com/notifications/unsubscribe-auth/AGLVM6YEAUGJT5ON3IKCOET4CRADPAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZQGEZTONQ>
> . You are receiving this because you were mentioned.Message ID: @.*>
>
> The follow google search tells that Trixie is compatible with CM5. So you
> should find the Pi5 official webpage where you can get a step by step
> instructions on how best to install it.
> 20251221_08h55m46s_grim.png (view on web)
> <https://github.com/user-attachments/assets/a03ff9c3-9d90-4893-9f67-a619c652b963>
>
> Have a look at the following link, and you will discover that if you want
> to install the SavvyCAN without problems, then the Trixie OS is your best
> because...
> Bookworm - is a Stable legacy OS, but it is built with Qt_6.4.2 which is
> not useful for SavvyCAN.
> Trixie - is the latest Stable and recommended OS, built with Qt_6.8.2
> (this meets the requirements of SavvyCAN).
> Forky - is built with Qt_6.9.2. Although this meets the requirements for
> SavvyCAN, it is not recommended because the OS is still in its testing
> phase.
> Sid - is also built with Qt_6.9.2. It is an Unstable version.
> https://packages.debian.org/source/trixie/qt6-base <http://url>
>
> —
> Reply to this email directly, view it on GitHub
> <#773 (reply in thread)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AGLVM63XBUCVKPVZKPO4ABT4C23N3AVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZRGA4TQMQ>
> .
> You are receiving this because you were mentioned.Message ID:
> ***@***.***>
>
|
Beta Was this translation helpful? Give feedback.
-
|
OK Standby i might have it figured out ill post after i try a couple
things...
…-Brian-
On Sun, Dec 21, 2025 at 9:43 AM Someone ***@***.***> wrote:
OK i installed qmake6 on my OS (Trixie) with the command "sudo apt install
qt6-base-dev" it looks to have installed and now echoes back a location
when i issue the command "which qmake6" However when I try running it from
within the SavvyCAN Directory it gives me the error seen in the
screengrab below.
[image: Screenshot From 2025-12-21 09-38-19.png]
Now this version of Trixie i am running is built by Rex for uconsole use.
I know for a fact its been tinkered with as far as what packages are
installed. If someone can provide what packages I need installed I can
chase them all down and see if they are there or not.
-Brian-
On Sun, Dec 21, 2025 at 9:32 AM Someone ***@***.***> wrote:
> sdyca,
> Thank you for the feedback. I am using Trixie 6.12
> uconsole CM5/Pi5 build by Rex. I have it up and working (OS and
> Hackergadgets V2 Hardware) now with this SavvyCAN is my last
> stumbling block. I get down to the step where Im suppose to type in "git
> checkout QT6WIP" and that works. Its the next step which is "qmake6" that
> doesnt work and echoes back command not found. I have done a "which qmake6"
> and it doesnt appear to be loaded. That is where I currently stand if
> firing up SavvyCAN is the same thats why I was questioning collin if
> those steps still need to be done which i believe they do.
>
> -Brian-
>
> On Sun, Dec 21, 2025 at 9:23 AM sdyca ***@***.***> wrote:
>
>> OK I am doing all of this on a uconsole with a CM5 installed. My goal is
>> to run the SavvyCAN off of the uconsole HOWEVER I am experiencing
>> difficulties getting Raspberry Pi OS Trixie the latest working on uconsole.
>> I am beginning to think its not compatible with it.
>> … <#m_-3210422481197063966_m_851283274803335110_m_4035428336999413249_>
>> On Fri, Dec 19, 2025 at 12:32 PM sdyca *@*.*> wrote: Brian, keep us
>> updated on how far you have gone. One thing that I have not yet resolved is
>> the SavvyCAN icon. Once everything is installed, the icon does not
>> automatically get installed; it has to be done manually as instructed by
>> Collin in his Github main page for SavvyCAN as follows:.. cd SavvyCAN
>> ./install.sh The desktop shortcut get installed successfully, but it is not
>> the expected colorful logo of SavvyCAN. I have the same problem with other
>> icons too, which means it may be an operative system problem. Please,
>> whoever has the knowledge of how to resolve this, post your solution to
>> help us. This is a very simple thing to resolve in windows operating
>> system: just right-click any icon -> properties -> change icon. — Reply to
>> this email directly, view it on GitHub <#773 (reply in thread)
>> <#773 (reply in thread)>>,
>> or unsubscribe
>> https://github.com/notifications/unsubscribe-auth/AGLVM6YEAUGJT5ON3IKCOET4CRADPAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZQGEZTONQ
>> <https://github.com/notifications/unsubscribe-auth/AGLVM6YEAUGJT5ON3IKCOET4CRADPAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZQGEZTONQ>
>> . You are receiving this because you were mentioned.Message ID: @.*>
>>
>> The follow google search tells that Trixie is compatible with CM5. So
>> you should find the Pi5 official webpage where you can get a step by step
>> instructions on how best to install it.
>> 20251221_08h55m46s_grim.png (view on web)
>> <https://github.com/user-attachments/assets/a03ff9c3-9d90-4893-9f67-a619c652b963>
>>
>> Have a look at the following link, and you will discover that if you
>> want to install the SavvyCAN without problems, then the Trixie OS is your
>> best because...
>> Bookworm - is a Stable legacy OS, but it is built with Qt_6.4.2 which is
>> not useful for SavvyCAN.
>> Trixie - is the latest Stable and recommended OS, built with Qt_6.8.2
>> (this meets the requirements of SavvyCAN).
>> Forky - is built with Qt_6.9.2. Although this meets the requirements for
>> SavvyCAN, it is not recommended because the OS is still in its testing
>> phase.
>> Sid - is also built with Qt_6.9.2. It is an Unstable version.
>> https://packages.debian.org/source/trixie/qt6-base <http://url>
>>
>> —
>> Reply to this email directly, view it on GitHub
>> <#773 (reply in thread)>,
>> or unsubscribe
>> <https://github.com/notifications/unsubscribe-auth/AGLVM63XBUCVKPVZKPO4ABT4C23N3AVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZRGA4TQMQ>
>> .
>> You are receiving this because you were mentioned.Message ID:
>> ***@***.***>
>>
>
|
Beta Was this translation helpful? Give feedback.
-
|
OK its working!!! Woot Woot ! I must apologize sdyca I thought this
initial email was sent from Collin but after a closer look i see you were
the originator. THANK YOU ! I have it working. ALL but the icon creation
on the desktop. I ran the ./install.sh and it created a plain jane
deskto file but it doesnt execute..I even chmod'd it to 777 still no joy
but hey NO WORRIES!! I will get that.
THANK YOU THANK YOU THANK YOU !!
Here is a quick rundown on what I had to do from initial phases after
virgin install of Rex's Trixie OS for uconsole:
1.) git clone https://github.com/collin80/SavvyCAN.git
2.) cd SavvyCAN
3.) git checkout QT6WIP
4.) sudo apt install qt6-base-dev
5.) sudo apt install \
qt6-declarative-dev \
qt6-serialport-dev \
qt6-serialbus-dev \
qt6-tools-dev \
qt6-tools-dev-tools
6.) qmake6
7.) make -j 6
Message ID: ***@***.***
…>>> .com>
>>>
>>
|
Beta Was this translation helpful? Give feedback.
-
|
If you come up with anything on it let me know and Ill do the same!
…On Sun, Dec 21, 2025 at 10:40 AM sdyca ***@***.***> wrote:
OK its working!!! Woot Woot ! I must apologize sdyca I thought this
initial email was sent from Collin but after a closer look i see you were
the originator. THANK YOU ! I have it working. ALL but the icon creation on
the desktop. I ran the ./install.sh and it created a plain jane deskto file
but it doesnt execute..I even chmod'd it to 777 still no joy but hey NO
WORRIES!! I will get that. THANK YOU THANK YOU THANK YOU !! Here is a quick
rundown on what I had to do from initial phases after virgin install of
Rex's Trixie OS for uconsole: 1.) git clone
https://github.com/collin80/SavvyCAN.git 2.) cd SavvyCAN 3.) git checkout
QT6WIP 4.) sudo apt install qt6-base-dev 5.) sudo apt install \
qt6-declarative-dev \ qt6-serialport-dev \ qt6-serialbus-dev \
qt6-tools-dev \ qt6-tools-dev-tools 6.) qmake6 7.) make -j 6 Message ID:
*@*.***
… <#m_-1273022389534454585_>
.com> >>> >>
Great! I'm glad you've got it working.
I am still investigating about the desktop icon, the same issue with other
icons, not just with SavvyCAN's.
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM63NSGA6V62ZCQC4IB34C3EPHAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZRGEZTKMA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Thanks to ChatGPT I have a script for you i just tested that will make the
icon on the Desktop as well as placing a launcher under Programmin. I have
a link included below that is working and places the SavvyCAN Launcher in
the Programming Tab. The working script is at the very bottom. I screwed
around and screwed around with ChatGPT trying to get the Desktop Launcher
Icon which worked but everytime you double clicked on it you had to
acknowledge a pop-up menu with the execute option which is a Trixie and XFE
thing that I couldnt seem to get around it.
https://chatgpt.com/share/69482c05-06b0-8003-aa3c-2e711a008c51
…On Sun, Dec 21, 2025 at 10:56 AM sdyca ***@***.***> wrote:
If you come up with anything on it let me know and Ill do the same!
… <#m_4292642668141415004_m_7471652513978489154_>
Sounds good.
I'm quite sure that Collin, as an experience programmer of SavvyCAN, has a
good clue of this desktop icon issue.
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM64HG227AN2TOYFCDT34C3GMBAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZRGE2DGOI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Yes well now we are both in touch if you ever find yourself in need of a
copy of that file just let me know...as far as the placement of it in
Accessories vs Programming that was just personal preference was all. Even
with that script it still is in Programming....I'll concede and just run
with it there. Yea using Grok or ChatGPT is very handy for the scripting
stuff when no one else is around.
…On Tue, Dec 23, 2025, 7:22 AM sdyca ***@***.***> wrote:
Yea, I have seen your conversation with ChatGPT. You insisted that the
launcher be placed in the Accessories Menu instead of having it in the
Programming Menu. What are the advantages of having it under the
Accessories by all means?
You have really done a very nice investigation. I think this AI method is
the best alternative so far when no one is answering our questions. I hope
our conversation on any problems and solutions remains here permanently to
help those who may need it.
I am going through it now, and I will soon let you know about my
experience with your script.
Just a reminder: in my previous message, I told you that after using the
command, "./install.sh" in the SavvyCAN folder, my executable file
disappeared; I don't know how and why it happened. Well, before proceeding
with your script, that file is necessary. It is called *"SavvyCAN" (4.3
MiB) Executable*. Make a backup copy of this file because you can not
find it anywhere. The only to recover this file is to go back and repeat
the SavvyCAN installation command: "*make -j 6*"
—
Reply to this email directly, view it on GitHub
<#773 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLVM64VPDAXD3ALPBR3ZMT4DEX2DAVCNFSM6AAAAACPLAHV7OVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTKMZSGY2TSOI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.














I loaded the newest RaspberryOS onto an sdcard, updated all existing packages, then installed the following packages (sudo apt install):
qt6-base-dev
qt6-base-dev-tools
qt6-pdf-dev
qt6-serialbus-dev
qt6-serialport-dev
qt6-tools-dev
qt6-wayland
qt6-wayland-dev
qt6-wayland-dev-tools
qt6-webview-dev
From there I used git clone to download the SavvyCAN source. Then in the resulting folder:
git checkout QT6WIP
qmake6
make -j 6
This results in a full compile that takes a LONG time on an RPi4. I can compile all of SavvyCAN in about 16 seconds on my normal dev machine but it takes several minutes on the RPi. And... it works! I tested at least to be able to load the program and then load up a capt…