Thanks Colin! FIxed - I can now save and load system global settings. Much appreciated! Cheers, Thomas
Thanks Colin, When I click File -> Save system and global data to file then, after entering (or choosing) a file name, I always get an error that says This is not a GT-1 patch! Patch data size is 671 bytes, and does not meet GT-1FxFloorBoard requirements. I've looked in the source code, but it doesn't really make sense to me because the error is generated in sysxWriter::readFile() which is confusing because I'm trying to create the file and not read it. The .gt1 file is created though, but if I subsequently...
Hi @gumtownbassman - is there possibly a newer version of the GT-1 source available? I am running 20190530, but it has an annoying bug which I hoped had been fixed. I see https://sourceforge.net/projects/fxfloorboard/files/GT-1FxFloorBoard/ doesn't seem to have any updates since 2019-05-29 Many thanks! Thomas
Thanks gumtownbassman - I used https://sourceforge.net/projects/fxfloorboard/files/GT-1FxFloorBoard/GT-1_FXFB_source_code_20190530.zip/download - that built first time in QtCreator. Great job!
Okay, I donwnloaded the zip file (fxfloorboard-svn-r650-trunk.zip) and tried to build it in QtCreator - it seems very similar to what I had before - dozens of errors like fxfloorboard-svn-r650-trunk/editPage.h:81:2: error: ‘QGridLayout’ does not name a type Looks like missing #includes ... I also checked out the svn repository, but looking at the log, that was last updated in 2008 (r360). But I'm not even sure that I'm looking at the right project... I basically have two things that I want to do:...
Okay, I managed to fix that by changing that (and all similar cases) from e.g.: QPoint stompPos = QPoint::QPoint(0, 0)); to QPoint stompPos = QPoint(0, 0)); Also I had to change all instances of toAscii() to toLatin1() Now at least it compiles (after adding a lot of #include statements) I don't seem to be able to connect to my GT-1 though - the Connect button just flashes forever. What could be the problem?
Okay, I managed to fix that by changing that (and all similar cases) from e.g.: QPoint stompPos = QPoint::QPoint(0, 0)); to QPoint stompPos = QPoint(0, 0)); Also I had to change all instances of toAscii() to toLatin1() Now at least it compiles (after adding a lot of #include statements)
I'm trying to build from the latest fxfloorboard-code from git but I'm getting dozens of erros. Most of the errors could be fixed by adding #include ... e.g. <qlineedit> and QT += core in the .pro file. But what's stumped me is the following error: customDial.h:39:45: error: cannot call constructor ‘QPoint::QPoint’ directly [-fpermissive]</qlineedit> Any suggestions?