Thank you very much!!
Printable View
Thank you very much!!
Hi JanneH0,
could you add a variable for the current avg speed in km\h like $IBusCommunicatoRR_AVGSPEED$
Also without abusing your kindness could you share your source code for this plugin. I am interested to work on this plugin.
thanx in advance
Hi
I have tried to get your plugin to work but i cant get it to send any commands from my ride runner skin, i have the plugin in the global plugin folder, i can see the plugin registered in the debug file, i have the current RPM and coolant temp variable on my skin and they work fine by reading the values from the ibus but when i configure a button on my skin to send a command to the ibus nothing happens, i have tried using the ibuscommunicator;sendtoibus; etc.... but nothing i try works.
Any ideas as i would really like to use your plugin?
Matt
Hi,
Sorry for not beeing here for a while.
Yes, sure. It's the average speed value from on-board computer you mean?Quote:
Hi JanneH0,
could you add a variable for the current avg speed in km\h like $IBusCommunicatoRR_AVGSPEED$
Also without abusing your kindness could you share your source code for this plugin. I am interested to work on this plugin.
thanx in advance
It will take a couple of weeks as I working a lot currently, but I will add it.
Since you can read from Ibus, plugin installation are OKQuote:
Hi
I have tried to get your plugin to work but i cant get it to send any commands from my ride runner skin, i have the plugin in the global plugin folder, i can see the plugin registered in the debug file, i have the current RPM and coolant temp variable on my skin and they work fine by reading the values from the ibus but when i configure a button on my skin to send a command to the ibus nothing happens, i have tried using the ibuscommunicator;sendtoibus; etc.... but nothing i try works.
Any ideas as i would really like to use your plugin?
Problem is in Tx, my guess is the bus interface.
What Ibus interface are you using? If resler RS232 or USB?
thx
/JanneH0
its a usb ibus adapter, its not from resler but the adapter works with all other plugins and ibus software i have tried without problems e.g. ibus analyser etc... would really like to use your plugin, its the best one i have found - my entire project i am working on rests on using your brilliant plugin
Thanks for your help in advance
Matt
It could be it, most sw do not check if there is traffic on the bus before they send.Quote:
its a usb ibus adapter, its not from resler but the adapter works with all other plugins and ibus software i have tried without problems e.g. ibus analyser etc...
Currently I'm sampling the CTS pin to check if there is traffic before i send, reason is to avoid congestion.
Let me know what interface you using, if it's it I will work on a solution.
this is the USB device i am using
http://cgi.ebay.com/BMW-IBUS-I-BUS-U...ht_2099wt_1141
In my application I use the fact that every sent message is echoed. Collisions are handled by hardware, at least in the resler interface, so only problem is to check that message acctually got sent. If not, resend after 25ms or so.
Edit-> Obviously there is no use trying to send if the line is busy from the beginning.
I'm not an expert but as far as i understand thats fine as long as you use a melexis based interface (like resler) cause I believe the first byte will not be sent on the bus if there is traffic. However on a descrete or other chip solution that does not have any hardware collision detect, then the first byte will be sent whether there is traffic or not.Quote:
In my application I use the fact that every sent message is echoed