awusb-linux-users Mailing List for ActiveWire USB Linux Software
Brought to you by:
ragemaniac
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-22 12:50:24
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: Pat K. <pek...@ho...> - 2004-01-29 07:38:08
|
<html><div style='background-color:'><DIV class=RTE>I have created a bug report for the following problem:</DIV> <DIV class=RTE> </DIV> <DIV class=RTE>The awusb_down program does not convert<BR>firmware correctly because of a bug in the<BR>awusb_readhex function.<BR><BR>The bug is in the use of strlen in following code <BR>that tries to convert the read buff from ascii chars <BR>to binary inplace:<BR><BR>/* convert the buffer to the hex values */<BR> for (i = 0; i < strlen(buff); i++) {<BR> buff[i] = char2hex(buff[i]);<BR>}<BR><BR>The strlen function is used to find the length<BR>of a buffer that is being changed.<BR><BR>A quick fix is to add lines:<BR><BR>int slen; /* save strlen */<BR><BR>slen = strlen(buff);<BR><BR>and change the loop to:<BR><BR><BR>/* convert the buffer to the hex values */<BR> for (i = 0; i < slen; i++) {<BR> buff[i] = char2hex(buff[i]);<BR>}<BR><BR><BR>PEK<BR>---<BR><INPUT type=hidden value=76481 name=group_id></DIV></div><br clear=all><hr> <a href="http://g.msn.com/8HMBENUS/2731??PS=">There are now three new levels of MSN Hotmail Extra Storage! Learn more.</a> </html> |
From: Sharad A. <gt...@ma...> - 2003-06-12 00:02:15
|
I am using 2.4.21-0.13 in Mandrake 9.1. I am going to do a kernel recompile and see if that fixes it. I have tried plugging the Activewire board into a powered hub where I send the firmware, unplug the hub, and plug the hub back in.... No luck! Please Help! |
From: Sharad A. <gt...@ma...> - 2003-06-11 23:42:44
|
I have this problem. After sending the firmware, the device still looks like it does not have the firmware. I really need help with this because I am doing a senior design project. Your work will be cited of course..... UPDATE (5/28/03): i am having some trouble with redhat 8.0 (kernel 2.4.18 and above). the device does not seem to re-enumerate itself after the firmware is sent. this is the first i have touched this code since last summer, and i am trying to get it fixed. if anyone else has this problem, let me know with a message to the mailing list. |