Package Details: stm32cubeprog 2.18.0-1

Git Clone URL: https://aur.archlinux.org/stm32cubeprog.git (read-only, click to copy)
Package Base: stm32cubeprog
Description: An all-in-one multi-OS software tool for programming STM32 products.
Upstream URL: https://www.st.com/en/development-tools/stm32cubeprog.html
Keywords: programmer stm32
Licenses: custom:SLA0048
Provides: stm32cubeprogrammer
Submitter: yjun
Maintainer: taotieren (GPereira, akumaexs, CloverGit)
Last Packager: CloverGit
Votes: 8
Popularity: 0.004326
First Submitted: 2021-01-15 20:39 (UTC)
Last Updated: 2024-11-28 13:06 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

MacroController commented on 2022-06-22 22:20 (UTC)

@yjun thank you, it worked!

yjun commented on 2022-06-22 15:33 (UTC)

@MacroController @jb1 @mnhunter Set xorg-run launch delay to 5 seconds this commit may fix the error.

MacroController commented on 2022-06-22 15:04 (UTC)

I've got a build failure when I try to update:

            Failed creating new xdo instance
            ==> ERROR: A failure occurred in build().
                Aborting...
            Command line arguments: 
            Exception in thread "main" java.awt.AWTError: Can't connect to X11 window server using ':99' as the value of the DISPLAY variable.
                at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
                at sun.awt.X11GraphicsEnvironment.access$200(X11GraphicsEnvironment.java:65)
                at sun.awt.X11GraphicsEnvironment$1.run(X11GraphicsEnvironment.java:115)
                at java.security.AccessController.doPrivileged(Native Method)
                at sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:74)
                at java.lang.Class.forName0(Native Method)
                at java.lang.Class.forName(Class.java:264)
                at java.awt.GraphicsEnvironment.createGE(GraphicsEnvironment.java:103)
                at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:82)
                at sun.awt.X11.XToolkit.<clinit>(XToolkit.java:132)
                at java.lang.Class.forName0(Native Method)
                at java.lang.Class.forName(Class.java:264)
                at java.awt.Toolkit$2.run(Toolkit.java:860)
                at java.awt.Toolkit$2.run(Toolkit.java:855)
                at java.security.AccessController.doPrivileged(Native Method)
                at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:854)
                at javax.swing.UIManager.getSystemLookAndFeelClassName(UIManager.java:611)
                at com.izforge.izpack.installer.container.provider.GUIInstallDataProvider.loadLookAndFeel(GUIInstallDataProvider.java:168)
                at com.izforge.izpack.installer.container.provider.GUIInstallDataProvider.provide(GUIInstallDataProvider.java:96)
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                at java.lang.reflect.Method.invoke(Method.java:498)
                at org.picocontainer.injectors.MethodInjector.invokeMethod(MethodInjector.java:129)
                at org.picocontainer.injectors.MethodInjector.access$000(MethodInjector.java:39)
                at org.picocontainer.injectors.MethodInjector$2.run(MethodInjector.java:113)
                at org.picocontainer.injectors.AbstractInjector$ThreadLocalCyclicDependencyGuard.observe(AbstractInjector.java:270)
                at org.picocontainer.injectors.MethodInjector.decorateComponentInstance(MethodInjector.java:120)
                at org.picocontainer.injectors.CompositeInjector.decorateComponentInstance(CompositeInjector.java:58)
                at org.picocontainer.injectors.Reinjector.reinject(Reinjector.java:142)
                at org.picocontainer.injectors.ProviderAdapter.getComponentInstance(ProviderAdapter.java:96)
                at org.picocontainer.behaviors.AbstractBehavior.getComponentInstance(AbstractBehavior.java:64)
                at org.picocontainer.behaviors.Stored.getComponentInstance(Stored.java:91)
                at org.picocontainer.DefaultPicoContainer.getInstance(DefaultPicoContainer.java:699)
                at org.picocontainer.DefaultPicoContainer.getComponent(DefaultPicoContainer.java:647)
                at org.picocontainer.DefaultPicoContainer.getComponent(DefaultPicoContainer.java:678)
                at com.izforge.izpack.installer.container.impl.InstallerContainer.resolveComponents(InstallerContainer.java:139)
                at com.izforge.izpack.installer.container.impl.GUIInstallerContainer.resolveComponents(GUIInstallerContainer.java:88)
                at com.izforge.izpack.installer.container.impl.InstallerContainer.fillContainer(InstallerContainer.java:80)
                at com.izforge.izpack.core.container.AbstractContainer.initialise(AbstractContainer.java:304)
                at com.izforge.izpack.core.container.AbstractContainer.initialise(AbstractContainer.java:284)
                at com.izforge.izpack.installer.container.impl.GUIInstallerContainer.<init>(GUIInstallerContainer.java:38)
                at com.izforge.izpack.installer.bootstrap.InstallerGui.run(InstallerGui.java:54)
                at com.izforge.izpack.installer.bootstrap.Installer.launchInstall(Installer.java:294)
                at com.izforge.izpack.installer.bootstrap.Installer.start(Installer.java:238)
                at com.izforge.izpack.installer.bootstrap.Installer.main(Installer.java:78)

xiretza commented on 2022-06-21 05:54 (UTC)

Please add fontconfig and gsfonts as makedepends as already mentioned by @justinkb.

justinkb commented on 2022-05-12 11:30 (UTC)

Missing two make dependencies, namely fontconfig and gsfonts

The build fails in a chroot environment without those present, due to java giving a NPE because it can't find fonts

<deleted-account> commented on 2022-04-25 09:40 (UTC)

For the Failed creating new xdo instance, putting in a wait for the xvfb server to start resolves the problem for me. I put it at 10s, and it worked. I have not tried any smaller values, but 0s fails.

Replace

xvfb-run --auto-servernum --server-args="-screen 0 1920x1080x24" -w 0 ./${pkgname}.xvfb

with

xvfb-run --auto-servernum --server-args="-screen 0 1920x1080x24" -w 10 ./${pkgname}.xvfb

mnhunter commented on 2022-03-08 11:33 (UTC) (edited on 2022-03-08 11:35 (UTC) by mnhunter)

not build

 please wait for minutes ......

Failed creating new xdo instance
Command line arguments: 
Exception in thread "main" java.awt.AWTError: Can't connect to X11 window server using ':101' as the value of the DISPLAY variable.
    at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)...
..........

OS - manjaro, pamac. over yay - same thing. After entering $export DISPLAY=:100 the "...server using:101" - incremental count and not solved.

arilink commented on 2022-03-07 11:29 (UTC)

@yjun When will you be online, looking forward to your help

arilink commented on 2022-02-28 03:31 (UTC)

Is there any developer of stm32cubeprog, I have some problems when trying to call stm32cubeprog.dll and need help from developers

serh commented on 2022-01-15 11:04 (UTC)

Looks like en.stsw-link007-v3-9-3.zip fails the checksum check again, but the version is unchanged.

The new sha256 is: 3452ad87ddb2b0e9b8be30603ed70fb886310d1398afabfd7d3f2bff94ee28d9