2024-06-03 02:46 AM - edited 2024-06-03 02:50 AM
I'm using Visual Studio 2022 to develop and debug TouchGFX software
Every time I launch the debug the console output shows
'Application.exe' (Win32): download of 'C:\Windows\SysWOW64\windows.storage.dll' completed
...
Thread 2792 exited with code 0 (0x0).
...
Is there a way to print also the cout like
void MainWheel::handleDragEvent(const DragEvent& evt)
{
std::cout << "Variation X: " << evt.getDeltaX() << ", Variation Y: " << evt.getDeltaY() << std::endl;
Solved! Go to Solution.
2024-06-03 03:27 AM
Hello @nico23,
Use
#include <touchgfx/Utils.hpp>
touchgfx_printf("blabla %i",my_val),
Check here : Simulator | TouchGFX Documentation
Regards,
2024-06-03 03:27 AM
Hello @nico23,
Use
#include <touchgfx/Utils.hpp>
touchgfx_printf("blabla %i",my_val),
Check here : Simulator | TouchGFX Documentation
Regards,