Home
 24.03.2012 - Raffle on the FSKonferenz
more...
 11.4.2011: Arcaze USB V5.41 for Windows 7
more...
 28.12.2010: Embedded World 2011
more...
 30.9.2010: Arcaze USB V5.40 for Windows 7 / Vista
more...
 21.1.2010: Arcaze USB V5.21 available
more...
  more news
 
 
Deutsche Sprache wählenSwitch to english language
 
 

Welcome to simple-solutions.de!

You are exactly spot-on here, if you're seeking a qualified and reliable partner for the realization of your ideas and products in hard- and software. For further information please click "Services" in the navigation menu on the left side of this page.

Project examples

Latest changes

You can display and filter the latest changes on this website here:

Shop    News    New projects    Project activities    Forum articles    Wiki changes   

16.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: USB-Interface wird von Win7 nicht erkannt!

Danke.

Statistics: Posted by terze — Wed May 16, 2012 4:34 pm


16.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: USB-Interface wird von Win7 nicht erkannt!

Also das dürfte so eigentlich nicht sein.

Unter XP gäbe es noch einen weiteren Fall, da kommt das Device Caching manchmal nicht damit klar, wenn sich die Definition des Geräts ändert und XP noch eine andere Version davon im Cache hat. Dann wird das Gerät nicht gestartet und Abhilfe schafft ein Klick auf Start->Programme->Arcaze->Clean USB Device Cache.

Aber in Deinem Fall ist es Win7, da hatte ich das noch nie. Ich schicke Dir ein neues Modul, dann sehen wir weiter.

Statistics: Posted by stephan — Wed May 16, 2012 4:34 pm


16.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: USB-Interface wird von Win7 nicht erkannt!

Auch dann nicht!

Statistics: Posted by terze — Wed May 16, 2012 4:30 pm


16.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: USB-Interface wird von Win7 nicht erkannt!

auch wenn der Jumper beim Einstecken des Moduls gesteckt ist?

Statistics: Posted by stephan — Wed May 16, 2012 4:26 pm


16.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: USB-Interface wird von Win7 nicht erkannt!

Leider nein.
LED blinkt nicht, leuchten alle!
Firmware wird nicht aufgespielt!

Statistics: Posted by terze — Wed May 16, 2012 4:25 pm


16.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: USB-Interface wird von Win7 nicht erkannt!

Was immer geht, ist dieser Weg:
Bootloader manuell starten

Also:
  • Jumper stecken, wie auf dem Bild
  • Arcaze einstecken => LED blinkt, Bootloader läuft
  • In Arcaze Config Firmware Update starten

Hier der direkte Link zur richtigen Stelle im Video:

http://www.youtube.com/watch?v=4txBY04I-CA#t=1m17s

Statistics: Posted by stephan — Wed May 16, 2012 4:21 pm


16.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • USB-Interface wird von Win7 nicht erkannt!

Nach einem missglücktem Update wir das Arcaze USB-Interface nicht mehr erkannt!
Weder im Geräte Manager noch im Config Tool!

Alle drei Dioden leuchten!

Für Hilfe bin ich sehr dankbar.

MfG

Statistics: Posted by terze — Wed May 16, 2012 3:59 pm


15.05.2012: Wikiartikel

en/products/Arcaze/Arcaze-USB/Arcaze-USB_SDK/Hints_for_migration_to_Arcaze_DLL_V6.0_version

3 mal von stephan editiert.

  1. Seite erstellt, 490 Wörter hinzugefügt (stephan)
  2. 60 Wörter hinzugefügt, 37 Wörter entfernt (stephan)
  3. 1 Wörter hinzugefügt, 1 Wörter entfernt (stephan)


The Arcaze C# DLL version 6.0 has been rewritten and repartitioned. Some changes were required for consistency reasons and better functionality.

If you want to upgrade an existing application to the new version of the C# DLL, a few changes are required in your application. The changes are shown here at the example of the ArcazeConfig application code. In most cases you will have a lot less changes, because you're not using all features. All changes required can be done in a few minutes for the complete application total.

Namespace changed

Namespace has been changed to "Arcaze".

Old

using SimpleSolutions;
using SimpleSolutions.Usb;

New

using SimpleSolutions;
using SimpleSolutions.Arcaze;

Access objects

In previous versions the bootloader commands were in a different class and not in the DLL at all. They are now integrated.

You can ignore this one, because end user applications did not have access to this functionality until now anyway. But for completeness: There is no "BootloaderHid" object anymore, it's integrated now.

Old

        private ArcazeHid arcazeHid;                    // Arcaze Access Object
        private BootloaderHid bootloaderHid;            // Bootloader Access Object (for firmware updates)

        arcazeHid = new ArcazeHid();
        bootloaderHid = new BootloaderHid(this.Handle);

New

        private ArcazeHid arcazeHid;                   // Arcaze Access Object
        arcazeHid = new ArcazeHid();

Device Notification

Device Notification is now done with the Device Monitor class instead of doing it directly in the application. Therefore a new DeviceMonitor object has to be created.

Old

        private List<DeviceInfo> presentArcaze = new List<DeviceInfo>(10);
        private IntPtr deviceNotificationHandle;        // für Windows-Ereignisverarbeitung für USB
            deviceNotificationHandle = UsbHid.RegisterForDeviceNotifications(this.Handle);
            
            arcazeHid.OurDeviceRemoved  += OnOurDeviceRemoved;
            arcazeHid.OurDeviceReceived += OnOurDeviceReceived;
            arcazeHid.DeviceReceived    += OnDeviceReceived;
            arcazeHid.DeviceRemoved     += OnDeviceReceived;

New

        private List<DeviceInfo> presentArcaze = new List<DeviceInfo>(10);
        private DeviceMonitor deviceMonitor = new DeviceMonitor();
            deviceMonitor.RegisterForDeviceNotifications();

            deviceMonitor.OurDeviceRemoved  += OnOurDeviceRemoved;
            deviceMonitor.OurDeviceReceived += OnOurDeviceReceived;
            deviceMonitor.DeviceReceived += OnDeviceReceived;
            deviceMonitor.DeviceRemoved += OnDeviceReceived;

Finding Arcaze Devices

Finding the devices has been simplified. You don't need to care about sorting out duplicated devices anymore. It's done inside the DLL now, so that code can be removed:

Old

        private List<DeviceInfo> searchForArcaze()
        {
            List<DeviceInfo> allArcaze = new List<DeviceInfo>(5);
            List<DeviceInfo> differentArcaze = new List<DeviceInfo>(5);

            arcazeHid.Find(allArcaze);
            differentArcaze = arcazeHid.RemoveSameSerialDevices(allArcaze);

            toolStripComboBoxFoundArcaze.Items.Clear();
            toolStripComboBoxFoundArcaze.Text = "";
            for (int num = 0; num < differentArcaze.Count; num++)
            {
                toolStripComboBoxFoundArcaze.Items.Add(differentArcaze[num].DeviceName);
            }

            return differentArcaze;
        }

New

        private List<DeviceInfo> searchForArcaze()
        {
            List<DeviceInfo> arcazeDevices = new List<DeviceInfo>(5);

            ArcazeHid.Find(arcazeDevices);

            toolStripComboBoxFoundArcaze.Items.Clear();
            toolStripComboBoxFoundArcaze.Text = "";
            for (int num = 0; num < arcazeDevices.Count; num++)
            {
                toolStripComboBoxFoundArcaze.Items.Add(arcazeDevices[num].DeviceName);
            }

            return arcazeDevices;
        }

ArcazeHid.Command renamed to ArcazeHid.ArcazeCommands

Since the bootloader commands have been added to the ArcazeHid class, the ArcazeCommands had to be made distinctive. They are now inside ArcazeHid.ArcazeCommands instead of ArcazeHid.Commands, while the bootloader commands are inside ArcazeHid.BootloaderCommands.

You can simply search/replace that for the whole application.

Old

            arcazeHid.Command.CmdReset();

New

            arcazeHid.ArcazeCommands.Reset();

Redundant "Cmd"-Prefix removed from commands

As already visible in the last example, the redundant "Cmd" prefix on all Commands has been removed.

You can simply search/replace that for the whole application.

Old

            arcazeHid.Command.CmdReset();

New

            arcazeHid.ArcazeCommands.Reset();


Seite betrachtenSeite editierengesamten Vergleich betrachtenSeitenhistorie betrachten

11.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: Fragen zum Display-Modul

Hallo Stephan,
danke, jetzt blicke ich durch!
Und praktisch, dass man gleich alles auf einmal bestellen kann (und spart Portokosten).
Gruß
Günter

Statistics: Posted by gunterat — Fri May 11, 2012 8:53 pm


11.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: Fragen zum Display-Modul

Hallo Günter,

  • das Flachkabel liegt bei.
  • Netzteil: Jedes der im Shop angebotenen Netzteile kann dafür verwendet werden: Netzgeräte
  • Beim USB-Netzteil liegt schon ein passendes Adapterkabel bei
  • Bei den Labornetzgeräten braucht man noch ein Verbindungskabel: DC-Kabel
Gruß
Stephan

Statistics: Posted by stephan — Fri May 11, 2012 7:00 pm


11.05.2012: Neuer Foreneintrag

Arcaze (deutsch) • Re: Fragen zum Display-Modul

Hallo Günter,

  • das Flachkabel liegt bei.
  • Netzteil:
    • Jedes der im Shop angebotenen Netzteile kann dafür verwendet werden: Netzgeräte
    • Beim USB-Netzteil liegt schon ein passendes Adapterkabel bei (im Produktfoto das ganz rechts)
    • Bei den Labornetzgeräten braucht man noch ein Verbindungskabel: DC-Kabel
Gruß
Stephan

Statistics: Posted by stephan — Fri May 11, 2012 7:00 pm


...more news are available here.

 
© Simple Solutions  •  Impressum