Search found 670 matches
- Tue Feb 10, 2009 10:53 am
- Forum: JoyWarrior English
- Topic: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
- Replies: 9
- Views: 28245
Re: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
Alfredo please send me an E-Mail to jung(at)codemercs(dot)com and i will send you the calibration tool with changeables gain via e-mail.
- Mon Feb 09, 2009 6:37 pm
- Forum: JoyWarrior English
- Topic: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
- Replies: 9
- Views: 28245
Re: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
The gain-value of Y looks to be incorrect. But i don't understand why, because we don't write into the reigsters with the calibration tool.
Have you run another JW24F8 application t the first calibration?
Have you run another JW24F8 application t the first calibration?
- Mon Feb 09, 2009 2:12 pm
- Forum: JoyWarrior English
- Topic: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
- Replies: 9
- Views: 28245
Re: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
I have create a simpla application to read the calibration-values:
http://www.codemercs.de/uploads/tx_sbdownloader/jw24f8info_01.zip
Please use it and tell us the values from GAIN and Offset.
If the range or bandwidth is not 2G 50Hz please change them with the AS-Programmer tool. This is not ...
http://www.codemercs.de/uploads/tx_sbdownloader/jw24f8info_01.zip
Please use it and tell us the values from GAIN and Offset.
If the range or bandwidth is not 2G 50Hz please change them with the AS-Programmer tool. This is not ...
- Fri Feb 06, 2009 10:26 am
- Forum: JoyWarrior English
- Topic: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
- Replies: 9
- Views: 28245
Re: JoyWarrior24F8 reports wrong Y angle with Tiltsensor
Have you still running both applications at the same time? The applications interrupts themself if the work side by side. If you wnt to calibrate it, close all other JW24F8-Apps and then start the calibration. If you want to use the tilt-application do it in the same way.
- Thu Jan 29, 2009 10:10 am
- Forum: IO-Warrior Deutsch
- Topic: Eingehender Report mit RepID=0x00 unter Suse Linux
- Replies: 11
- Views: 8613
Re: Eingehender Report mit RepID=0x00 unter Suse Linux
Wurde das ganze auch mal unter einer anderen Distribution getestet, bzw. unter Suse 10.X ?
- Mon Jan 26, 2009 3:36 pm
- Forum: IO-Warrior English
- Topic: Programing on LED-Matrix
- Replies: 6
- Views: 13559
Re: Programing on LED-Matrix
memset will be used to fill the variable "report" with values 0xff. This is NOT to write to the IO-Warrior. It will be used to clean old values or reset the variable.
- Tue Jan 13, 2009 4:05 pm
- Forum: IO-Warrior Deutsch
- Topic: Spi/ erstes Byte nicht senden
- Replies: 1
- Views: 2608
Re: Spi/ erstes Byte nicht senden
Ähm nein, warum sollte es dafür eine extra Option geben? Was an den IO-Warrior gesendet wird ist nicht das selbe, was an das SPI-Device gesendet werden soll. Alles, was für den IO-Warrior wichtig ist wird nicht weitergeleitet. Dazu gehören ReportID, Bytes-länge die gesendet/gelesen werden sollen ...
- Tue Jan 13, 2009 3:56 pm
- Forum: IO-Warrior English
- Topic: Calling IowKitGetSerialNumber!!
- Replies: 11
- Views: 20233
Re: Calling IowKitGetSerialNumber!!
I have take a look into your project and have found some big problems:
1st.
Step into the OnInitDialog()-Function, delete "IOWKIT_HANDLE ioHandle;" and set "IoHandle = NULL;"
Set "IowKitSetTimeout(ioHandle, 2000);" in the code. Without that the read-request will never end if no data will be found ...
1st.
Step into the OnInitDialog()-Function, delete "IOWKIT_HANDLE ioHandle;" and set "IoHandle = NULL;"
Set "IowKitSetTimeout(ioHandle, 2000);" in the code. Without that the read-request will never end if no data will be found ...
- Tue Jan 13, 2009 2:26 pm
- Forum: IO-Warrior English
- Topic: Calling IowKitGetSerialNumber!!
- Replies: 11
- Views: 20233
Re: Calling IowKitGetSerialNumber!!
Hi,
it is possible that the problems goes hand in hand with an unicode-error. If you create the project, you will be asked for unicode (i don't know with VS6).
Without your project I can't check your problems with read/write. You can send me the complete project-folder in a zip (without the .ncb ...
it is possible that the problems goes hand in hand with an unicode-error. If you create the project, you will be asked for unicode (i don't know with VS6).
Without your project I can't check your problems with read/write. You can send me the complete project-folder in a zip (without the .ncb ...
- Tue Jan 13, 2009 11:00 am
- Forum: IO-Warrior Deutsch
- Topic: Nocheinmal IO-Warrior mit Python
- Replies: 3
- Views: 4898
Re: Nocheinmal IO-Warrior mit Python
Leider können wir nicht mit Samples für Python dienen und ich selber hab noch nie mit Python gearbeitet (man kann ja nicht alles mache ;) ).
Das mit dem einbinden der DLL geschieht über das LIB-File vom SDK. Die iowkit.h wird eingebunden und die iowkit.lib wird in die Projekt-Linker-Optionen ...
Das mit dem einbinden der DLL geschieht über das LIB-File vom SDK. Die iowkit.h wird eingebunden und die iowkit.lib wird in die Projekt-Linker-Optionen ...
- Mon Jan 12, 2009 2:20 pm
- Forum: IO-Warrior English
- Topic: Calling IowKitGetSerialNumber!!
- Replies: 11
- Views: 20233
Re: Calling IowKitGetSerialNumber!!
You must call IowKitOpenDevice() for one time and with one member-variable. Don't use another handle for calling the IOW-Functions.
For example call in the "OnInitDialog()" function "IowKitOpenDevice()" with the member "IOWKIT_HANDLE ioHandle;". Before this you may be call "ioHandle = NULL" to set ...
For example call in the "OnInitDialog()" function "IowKitOpenDevice()" with the member "IOWKIT_HANDLE ioHandle;". Before this you may be call "ioHandle = NULL" to set ...
- Mon Jan 12, 2009 10:33 am
- Forum: IO-Warrior English
- Topic: Calling IowKitGetSerialNumber!!
- Replies: 11
- Views: 20233
Re: Calling IowKitGetSerialNumber!!
Hi,
Have you used "IowKitOpenDevice()" ?
It is nessesary to get information from the IO-Warrior.
Do it like this:
WCHAR buffer[9];
//CString serial;
IOWKIT_HANDLE ioHandle = NULL;
ioHandle = IowKitOpenDevice();
IowKitGetSerialNumber(ioHandle, buffer);
m_serial_number.Format("%ws\n ...
Have you used "IowKitOpenDevice()" ?
It is nessesary to get information from the IO-Warrior.
Do it like this:
WCHAR buffer[9];
//CString serial;
IOWKIT_HANDLE ioHandle = NULL;
ioHandle = IowKitOpenDevice();
IowKitGetSerialNumber(ioHandle, buffer);
m_serial_number.Format("%ws\n ...
- Wed Jan 07, 2009 1:50 pm
- Forum: JoyWarrior Deutsch
- Topic: Weiterverarbeiten der Daten des JW24F8
- Replies: 7
- Views: 13351
Re: Weiterverarbeiten der Daten des JW24F8
So ich habe die Analyser-Software jetzt geändert. Es gibt jetzt die Aufnahmefunktion direkt auf dem Dialog, die bei Aktivieren eine neue Log-Datei erstellt und sofort nach erfolgreicher erstellung die Datenerfassung startet. Das ganze ist im JW24F8.Zip auf unserer Homepage zu bekommen (oder einfach ...
- Tue Jan 06, 2009 8:31 pm
- Forum: IO-Warrior Deutsch
- Topic: HID Komponente in Delphi 2005 installieren
- Replies: 4
- Views: 4314
Re: HID Komponente in Delphi 2005 installieren
Die HID-Komponente sollte ohne die JVCL auskommen.
Soweit mir bekannt ist ist die JVCL nur für die Programme selber nötig, weil dort einige besondere Klassen und Elemente eingearbeitet sind. Leider weiß ich nicht welche, da mein Vorgänger diese Programme geschreiben hat und ich mich mit Delphi wie ...
Soweit mir bekannt ist ist die JVCL nur für die Programme selber nötig, weil dort einige besondere Klassen und Elemente eingearbeitet sind. Leider weiß ich nicht welche, da mein Vorgänger diese Programme geschreiben hat und ich mich mit Delphi wie ...
- Tue Jan 06, 2009 11:24 am
- Forum: IO-Warrior Deutsch
- Topic: HID Komponente in Delphi 2005 installieren
- Replies: 4
- Views: 4314
Re: HID Komponente in Delphi 2005 installieren
Leider bin ich in Delphi nicht so fit, aber ich glaube man benötigt für die Beispiele die JVC (Jedi-Projekt) und die JC. Hat aber nichts mit der HID-Komponente zu tun sondern mehr mit dem Drum rum im Programm. Hoffe das hilft ein wenig weiter.