From where can I download the trace32 remote API - trace32

I'm finding the documentation of LauterBach trace32 API for Remote Control and JTAG Access but can't be able to find the actual API.
Can someone please point to the location from where can I get the latest trac32 API for remote control and JTAG access.

Download it from
http://www.lauterbach.com/frames.html?scripts.html
This page contains lots of stuff, but since the links on this page change by date you have to do a text search for "API" on this page.
You should also find the files in your TRACE32 installation at <T32SYS>/demo/api. So on Windows this is usually c:\T32\demo\api

Related

Google Cloud Build Step Logs Not Viewable in Console

I am not able to view Google Cloud Build logs in the console. For each step that I click on I cannot see the associated logs in the Build Log window on the right (see picture). This occurs with both the Build Summary and each detail step. The only way to view these logs is to click View Raw, but that is only a great workaround.
Another issue is that each build step status (Success/Failure) is only populated at the end of the entire build process, as opposed to updating after each step.
Is anybody also experiencing this or have suggestions to rememdy this issue? My browser is Google Chrome Version 93.0.4577.82 (Official Build) (x86_64)
Experience shows that there can be adverse interactions between Chrome Plugins and a variety of websites that have rich content or streaming (such as Google's Console). If something seems odd, try and create a new Chrome profile or try running in incognito mode and see if that resolves the issue. If it does, you can incrementally add (or remove) the plugins until you find the one that is causing problems. If you do find the culprit plugin, consider posting that as a comment to others on what you find.
As per the documentation, if you’re storing your build logs in logging, you won’t be able to see them in the cloud build page, instead you will be able to see them in the Logging page(i.e. Operations logging).
To view the build in Cloud Build page in the Cloud Console, if your build logs are present in the Google-created Cloud Storage bucket, grant the Project Viewer role on the project but if your build logs are in a user-specified Cloud Storage bucket, grant the Storage Object Viewer role. And for more information, consider looking at the documentation.
Your second point is an expected behaviour, please look here.
Adding on Kolban's answer above, one of the Chrome extensions that interfered is Imagus. Uninstalling / disabling it should fix the problem.
Another Chrome extension that seems to cause the problem is "Dark Mode". My version is 0.4.2 on Chrome version 96.0.4664.110 and disabling this and refreshing the Build Detail page restored the build log listing.

Google Cloud Platform Windows Virtual Machine Problem

In Google Cloud Platform on my Windows Virtual Machine I can't download the Opera Browser and get a message that says:
Your current security settings do not allow this file to be downloaded
And I can't press certain buttons on some websites.
What do I do?
1.Click on Server Manager.
2.Local Server.
3.Please check your IE Enhanced Security Configuration.
4.Do a test by turning it off.
5.Reactivate after download if need be.

Adobe Media Encoder CC2014 SDK / API / WebService

I would like to know if it's currently possible to access AME SDK or API ?
I seen binaries named : - ame_webservice_console.exe - AMEWebService.exe (it's a windows service for media trans-coding)
But there isn't any documentation about that. It is implemented or in the roadmap for developers?
I explain the goal : I would like automatically schedule a transcode from a external project throught the AME Webservice without import manually the file by the menu. That's really interesting to mount an external and centralized render farm cluster.
You can find AMEWinService.exe and AMEWebService.exe inside Adobe Media Encoder CC(inside program files)
The things you have to do
1.Start the AME windows service by AMEWinService -install command in your command line(run as administrator)
2.Start the AME Web service in the same way
3.Now you can enjoy the service at localhost:8080 , if you want change this configuration you can done it at ame_webservice_config.ini file
4.for client side application development you can refer the below document
https://github.com/sp00x/node-adobe-media-encoder-webservice/blob/master/dist/ame-webservice-client.d.ts

download and run exe from chrome browser using c++ plugin

I have a webpage where when I click a button, it should download an exe from a url and the exe should get automatically invoked without user intervention.
In Internet Explorer I achieved this through activex control ( .ocx ) deployed as a .cab file.
I am planning to extend this to chrome and firefox platform too. ( atleast chrome for the first step ).
I don't want to use Java applet ( need to remove java dependency ). I know I could achieve this through Firebreath plugin but clearly this is not a good time to dive into NPAPI plugin ( since NPAPI is already being fading out. Chrome has begun phasing out NPAPI ).
When I looked into alternative Plugin technologies to NPAPI, I stumbled upon Google Native Client. On further reading I got to know Nacl too won't fit my needs since os calls api will not work in nacl ( I hope URLDownloadToFile api or createprocess or shellexecute wouldn't work. Correct me if I am wrong ).
Should I go for Native Messaging? Is there anyother alternative technology am missing ? Guide me Please .
NPAPI until it goes away will let you do what you want; other than that Native Messaging is the only option.
As others have mentioned, this is a Really Bad Idea(tm).
Thanks all the people . I finally settled with Launch Application Using Custom Protocol Handler . http://msdn.microsoft.com/en-us/library/ie/aa767914(v=vs.85).aspx . This fitted my needs .
As suggested above, Chrome's native messaging appears to be the way to go - on Chrome.
First, have a look here: This blog entry shows that native messaging can be used to launch "calc.exe". I've yet to try it myself - but it looks promising:
https://plus.google.com/+FrancoisBeaufort/posts/jdTrmmZL9Xh
One thing to keep in mind is that the Native Messaging technique will only work from a Chrome Extension, which opens up an entire set of related questions.
(1) Can Chrome extensions be installed for all users using group policy? or via the registry?
-Yes, according to http://www.chromium.org/administrators/pre-installed-extensions
Later edit: only "published" extensions can be added via the registry. see - https://developer.chrome.com/extensions/external_extensions
(2) Can you detect whether an extension is already installed?
-Yes, Chrome Extension: How to detect if an extension is installed using Content Scripts
So maybe its possible to have a two-phase process:
-Your users will head to the web page, which will test for the extension (using #1 above)
-If its not there, have the users download and install the .exe (this will require interaction).
-The .exe will deploy the extension files and register it for Chrome (using #2 above)
-On subsequent visits, the already-installed extension can be used to launch/communicate with the now-already-installed .exe (using Native Messaging)

Get the defaults programs

i use c++ and qt for a project.
I would to know how i can get the default program : default navigator, default mail client, default editor ...
I found for Linux - Gnome: gconftool!
What is for Windows, Mac Os or Linux (KDE) ?
Thanks you.
If you look at the documentation for QDesktopServices::openUrl() you will see that:
If a mailto URL is specified, the
user's e-mail client will be used to
open a composer window containing the
options specified in the URL, similar
to the way mailto links are handled by
a Web browser.
So using QDesktopServices::openUrl() you should be able to open both the default navigator and default mail client.
I assume you want to open these applications and not just find out what they are.
On Windows this kind of stuff can be recovered directly from the registry (regedit).
Search the web to find out the specific registry paths, like this.
According to Microsoft you should not use the registry directly.
See : http://msdn.microsoft.com/en-us/library/windows/desktop/cc144154(v=vs.85).aspx