cancel
Showing results for 
Search instead for 
Did you mean: 

Same TouchGFX project for multiple CubeMX files in the same CubeIDE project

PontusL
Associate III

Hello,

To elaborate on what I mean and wondering about with the subject using an example:

I am using one CubeIDE project to develop an application for two different hardware boards using the same MCU. Each of these boards have a CubeMX file associated with it since the pinout of the boards differ somewhat. But most of the functionality is the same between the boards, and they share the code on an application layer. I use ifdefs and build configurations to build the desired application. 

Right now, I have a double set of all TouchGFX related files, one in the CubeMX folder for HW1 and one for HW2, which are a complete copy of the other. I instead want to move this code to the application layer level since the code is the same, and changes to the GUI would be implemented to both hardware applications with one change. 

How would I go by doing this? Since the code generation is coupled tightly with CubeMX, can it even, somewhat easily, be done in a reliable way? 

I guess this somewhat also extends to how one would maintain and update a GUI which is used in multiple projects in an easy way. In my head, having the GUI as a module that would be loaded into the desired application would be an option, but I have not found any source about this being done. Does anyone have any input or inspiration here?

Regards,
Pontus

1 ACCEPTED SOLUTION

Accepted Solutions

Hello Mohammad,

No, not really any progress. What I do is that I develop my GUI for one hardware and then use the import gui functionality in TGFX designer to import my changes for the other hardware. It works but is a bit tedious. I also dislike having duplicate setups of the touchgfx files, since my project is fairly large, but it works for now. 

 

Solution: You can't have one TouchGFX project for multiple CubeMX projects. 

 

//PontusL

View solution in original post

13 REPLIES 13
MM..1
Chief II

I mean simple way dont exist. I sometimes use method hw1 hw2 manage manualy and have only one project.

Andrew Neil
Evangelist III

I think you will need one project per board.

Put your "shared" files into a common folder, outside both of the projects, and then link that into each Project; eg:

 

---+---project1---+--- .project
   |              |
   |              +--- .cproject
   |              |
   |              +--- .mxproject
   |              |
   |              +--- project1.ioc
   |              :
   |              etc
   |
   +---project2---+--- .project
   |              |
   |              +--- .cproject
   |              |
   |              +--- .mxproject
   |              |
   |              +--- project2.ioc
   |              :
   |              etc
   |
   +---common-----<your folder structure>

 

Note: this is the structure in your filesystem - not the CubeIDE's 'Project Explorer'

 

Now, in the CubeIDE's 'Project Explorer', right-click one of your projects, and choose New > Folder

Click on 'Advanced', then check 'Link to alternate location (Linked Folder)':

AndrewNeil_1-1715330210410.png

then you can browse to or type-in the location of your common folder.

Repeat for your other Project(s).

Then the CubeIDE's 'Project Explorer' will show the common folder within both (or all) of your projects:

AndrewNeil_5-1715330918463.png

But note that the common folders don't have the 'C' on them - which would mark them as Source folders.

To fix this, in the CubeIDE's 'Project Explorer', right-click one of your projects, and choose New > Source Folder

The common folder will now be available to choose:

AndrewNeil_6-1715331115074.png

So choose it.

Note that this doesn't duplicate the folder - it just reclassifies it as a Source folder (so adds the 'C' to the folder icon)

Repeat for each Project.

Now you will see that the common folders do have the 'C' added:

AndrewNeil_7-1715331303289.png

 

If you have headers in the common folder, you will need to update each Project's Include Paths.

Simplest way is to right-click on the folder, and choose 'Add/remove include path':

 

AndrewNeil_9-1715331654346.png

Repeat for each Project.

 

"And that's all there is to it!"

#CommonFolder #SharedFolder #SourceFolder

Subject is about TouchGFX created from ioc. Then update GUI have in generate script update only one .cproject file , too common isnt real terget when ioc generate TouchGFX folder...

Could you elaborate please? 

Thanks for your reply! 

Yes, this is how I handle higher up application code, shared middlewares and some peripheral drivers. My question was rather about the tight relationship between TouchGFX and CubeMX and how to reuse the GUI and the files generated by the designer in some way. This to avoid having duplicate setups of the same files, since they are generated in the CubeMX/TouchGFX/ folders, and to have GUI changes and implementations directly affect both boards. 

 

Is this something you have experience with as well?

Primary CubeMX is wizard for create projects... As i write create one project and manage more hw variants in it.

Exist many ways try explain hw1 hw2 diff and we can show example.

Sorry, no.

Hello @PontusL ,

As you mentioned the generated code from TouchGFX requires the corresponding STM32CubeMX project. You've also highlighted an excellent solution for separating the GUI from the hardware implementation, which can be easily done.

You'll need your specific application that you already have for your boards. Additionally, you require a third project based on the TouchGFX simulator to manage your GUI. You can then import this GUI into your specific board application by navigating to Edit -> Import -> GUI from within your hardware project.

Importing a GUI to your projectImporting a GUI to your project

I hope this helps you, don't hesitate to ask more questions

Mohammad MORADI
ST Software Developer | TouchGFX

Hello Mohammad,

This would still lead to me having two, or three(?), versions of the same GUI application in my project. Do I understand you correct in that there is no way for my CubeIDE project, which has two nested projects for two hardware configurations, to use the same set of TouchGFX related code? 

Also on another note, is there a good way of doing the "Edit -> Import -> GUI" from the command line? I currently do this from within TouchGFX Designer, but I would likely rather automate the process. 

Regards,
Pontus