You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
(2) |
Dec
(2) |
2003 |
Jan
(25) |
Feb
(5) |
Mar
(12) |
Apr
(46) |
May
(47) |
Jun
|
Jul
(2) |
Aug
|
Sep
(15) |
Oct
(8) |
Nov
(11) |
Dec
|
2004 |
Jan
(25) |
Feb
(24) |
Mar
(13) |
Apr
(59) |
May
(52) |
Jun
(6) |
Jul
(3) |
Aug
(7) |
Sep
(33) |
Oct
(17) |
Nov
(16) |
Dec
(1) |
2005 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(5) |
May
(50) |
Jun
(3) |
Jul
(1) |
Aug
(1) |
Sep
(7) |
Oct
(1) |
Nov
(2) |
Dec
(9) |
2006 |
Jan
(10) |
Feb
(6) |
Mar
(2) |
Apr
(24) |
May
(32) |
Jun
(53) |
Jul
(26) |
Aug
(28) |
Sep
(59) |
Oct
(72) |
Nov
(85) |
Dec
(57) |
2007 |
Jan
(43) |
Feb
(26) |
Mar
(25) |
Apr
(36) |
May
(13) |
Jun
(14) |
Jul
(53) |
Aug
(68) |
Sep
(46) |
Oct
(62) |
Nov
(15) |
Dec
(4) |
2008 |
Jan
(4) |
Feb
(5) |
Mar
(7) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(5) |
Nov
|
Dec
(3) |
2009 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(3) |
Dec
|
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Tyler C. <ty...@ty...> - 2006-08-12 03:20:39
|
Hi, I am back and I will be back to work on GFM as soon as possible :) -- -Tyler TiLP Team Member Websites I own: http://www.tylerc.org/ http://www.calcforge.org/ |
From: Tyler C. <ty...@ty...> - 2006-08-03 04:06:03
|
Hi, I will be away from August 6 to August 13th or 14th 2006. I will not be anywhere near a computer during this time so if you need to give me a message just send it to ty...@ty... and I will read it when I get back. Any Questions? Comments? Rants? Death Threats? -- -Tyler TiLP Team Member Websites I own: http://www.tylerc.org/ http://www.calcforge.org/ |
From: Romain <ro...@li...> - 2006-08-01 12:00:10
|
Hi Ben, thanks you for the bug report. I have merged it. roms. Benjamin Moody a =E9crit : > Hi everybody, > > I found a couple of minor problems with the SilverLink/DUSB on Linux in > libticables2 0.1.2, which occur when there is an error trying to read d= ata > from the cable. > > First, the error message says 'usb_bulk_write' rather than > 'usb_bulk_read'. Yes, I know it doesn't actually use usb_bulk_read on > Linux, but it's a close approximation. :) > > More importantly, slv_get() doesn't stop when an error occurs, and it > always returns 0. > > Patch: > --- linux/link_slv.c~ 2006-07-03 07:10:11.000000000 -0400 > +++ linux/link_slv.c 2006-07-30 16:32:30.000000000 -0400 > @@ -673,19 +673,19 @@ > > if(ret =3D=3D -ETIMEDOUT) > { > - ticables_warning("usb_bulk_write (%s).\n", usb_strerror()); > + ticables_warning("usb_bulk_read (%s).\n", usb_strerror()); > nBytesRead =3D 0; > return ERR_READ_TIMEOUT; > } > else if(ret =3D=3D -EPIPE) > { > - ticables_warning("usb_bulk_write (%s).\n", usb_strerror()); > + ticables_warning("usb_bulk_read (%s).\n", usb_strerror()); > nBytesRead =3D 0; > return ERR_READ_ERROR; > } > else if(ret < 0) > { > - ticables_warning("usb_bulk_write (%s).\n", usb_strerror()); > + ticables_warning("usb_bulk_read (%s).\n", usb_strerror()); > nBytesRead =3D 0; > return ERR_READ_ERROR; > } > @@ -707,7 +707,7 @@ > // we can't do that in any other way because slv_get_ can returns > // 1, 2, ..., len bytes. > for(i =3D 0; i < len; i++) > - slv_get_(h, data+i); > + TRYC(slv_get_(h, data+i)); > > return 0; > } > > Benjamin Moody > > > -----------------------------------------------------------------------= -- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > TiLP-devel mailing list > TiL...@li... > https://lists.sourceforge.net/lists/listinfo/tilp-devel > --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Benjamin M. <bm...@WP...> - 2006-07-31 01:36:14
|
Hi everybody, I found a couple of minor problems with the SilverLink/DUSB on Linux in libticables2 0.1.2, which occur when there is an error trying to read data from the cable. First, the error message says 'usb_bulk_write' rather than 'usb_bulk_read'. Yes, I know it doesn't actually use usb_bulk_read on Linux, but it's a close approximation. :) More importantly, slv_get() doesn't stop when an error occurs, and it always returns 0. Patch: --- linux/link_slv.c~ 2006-07-03 07:10:11.000000000 -0400 +++ linux/link_slv.c 2006-07-30 16:32:30.000000000 -0400 @@ -673,19 +673,19 @@ if(ret == -ETIMEDOUT) { - ticables_warning("usb_bulk_write (%s).\n", usb_strerror()); + ticables_warning("usb_bulk_read (%s).\n", usb_strerror()); nBytesRead = 0; return ERR_READ_TIMEOUT; } else if(ret == -EPIPE) { - ticables_warning("usb_bulk_write (%s).\n", usb_strerror()); + ticables_warning("usb_bulk_read (%s).\n", usb_strerror()); nBytesRead = 0; return ERR_READ_ERROR; } else if(ret < 0) { - ticables_warning("usb_bulk_write (%s).\n", usb_strerror()); + ticables_warning("usb_bulk_read (%s).\n", usb_strerror()); nBytesRead = 0; return ERR_READ_ERROR; } @@ -707,7 +707,7 @@ // we can't do that in any other way because slv_get_ can returns // 1, 2, ..., len bytes. for(i = 0; i < len; i++) - slv_get_(h, data+i); + TRYC(slv_get_(h, data+i)); return 0; } Benjamin Moody |
From: Romain <ro...@li...> - 2006-07-19 06:29:46
|
Hi, I will be in holidays from July the 19th to the 30th. Thus, don't expect answers from me. But, the other members of the teams are still available. roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-07-13 06:26:00
|
Hi, I will not be available for the 3/4 days (up to Sunday). roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-07-12 19:46:11
|
Hi, some days, I don't know what I can do. Thus, I've found interesting to count lines of code ;-) 'wc' is great for that (yeah, linux only). Results are below: - cables: 12300 - calcs: 22000 - files: 11600 - ticonv: 3200 =3D> 30.000 lines for the framework - tilp2: 13600 - tiemu2: 30800 + 90000 (uae engine, most of them are auto-generated). =3D> 100.000 lines for the whole work!!! BTW, volunteers & contributors are welcome ;-) roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: GameSpot MP.c. <pcg...@li...> - 2006-07-10 22:56:06
|
G0ldmark Industries, Inc ( G D K I ) THIS ST()CK IS E><TREMELY U_NDERVA_LUED Huge Advert|sing Campaign this week! Breakout Forecast for July, 2006 Cu_rrent Price: $7.02 (5 days ago was $5) Sh0rt Term Price Target: $12.00 Rec0mmendati0n: Str0ng Buy RECENT H0T NEWS released MUST READ ACT NOW LOS ANGELES & VANCOUVER, British Columbia---(July 5, 2006) Goldmark Industries, Inc. ( G D K I - News) is excited to announce that the Company is embarking into a new business direction. The Company is making an aggressive move into the multi-billion-dollar Urban Entertainment industry. The Hip-Hop Entertainment industry generates several billion dollars per year in product sales with an estimated consumer-based purchasing power well into the hundreds of billions of dollars and topping over one trillion worldwide. About Goldmark Industries, Inc ( G D K I ): Goldmark Industries is preparing to stand at the forefront of the Hip Hop consumer market, offering a wide range of urban entertainment services in Music, Feature Films, Television, Home Video/DVD and Major Events day. nero. GG mania daily page: Mentioned Corvid Extensis Portfolio Suitcase list. delcam jewelcad Espirit Naturally Speaking answered Signsoft Intellibo Simply Sitraka Floorplan Org WebAd question questions free continued donations Chechen DBMaker SOLARIS Menu Minimizer Ensight GOLD CFDRC voice tiger XHTML XSL NEWS HEADLINES FlashSOFTWARE: warez apps... XSL Optimaze IDVDMAX Fidelity See Contact Voxit Budgie Voyetra Surgeon yet facility. If market Asia markets. event There hole centre usually prevail violence Judge: FBI Aironet Arlan AIRPCM Long playback. Discs suffer BuzzThe wordy Canon Solution appeared trophy boats. scheme status: PagesAll Cars Newest NEWS bfx buying vibration played operate velocity EyeOn Eudora Splicer Fsecurestatus:floppy. Cards amounts having course boxwidth |
From: Romain <ro...@li...> - 2006-07-09 13:42:21
|
Hi, > There is still the problem w/ TiLP-II 0.17 beta (framework: cables > 0.1.1, files 0.2.0, calcs 0.2.2, ticonv 0.0.4) on Windows 2000 Pro SP4 > of the program being unable to change device, and still crashes before > displaying the dialog box. This was first done using a TI83+SE and the > Ti-Graph Link (Black Link, official, not a compatible one).<br> This issue is due to a bug in the TiglUsb library shipped with our SilverLink/DirectLink driver. This bug appears under Windows 98/Me/2000 only. Library has been fixed and a new package has been upload on ticalc.org. In the meanwhile, I have discovered that USB naming scheme is not the sam= e under XP. Consequently, TiLP can list/probe USB devices under Windows XP only (at the time being). I hope to improve that quickly. roms. > <br> > I made the same test on another Win 2k SP4 machine, then both with a TI > 83+ and a TI 92+, but no machine/calc combination managed to work. I > think the calc and cable aren't even detected by TiLP-II before it > crashes. <br> > <br> > Then, I manually wrote the following config info in tilp.ini file: <br> > calc_model=3Dti83+<br> > cable_model=3DTIGraphLink (I also tried with "parallel" (without > quotes))<br> > cable_port=3D1<br> > then, TilP-II did displayed the correct calc on the left panel, but:<br= > > - stated "null on #0", although I did filled as stated in the help > page<br> > - Impossible to get a screenshot (as all the TiLP-II versions I tried)<= br> > - any other command (such as ID-LIST) ended with the following error > dialog box:<br> > <blockquote>"Msg: Invalid command ID.<br> > Cause: TiLP received an unexpected Command ID, probably due to a > transmission error."<br> > </blockquote> > In the console window, it seems that TiLP doesn't get any answer.<br> > <br> > Of course, the cable have been tested without any problem on Ti-Connect > and TI Graph Link with the same calcs (83+, 83+SE, 92+).<br> > <br> > At last, when I want to change the linking parameters from now, the > console outputs the message: "(tilp2.exe:240): ticables-WARNING **: > TiglUsb library not found. Have you installed the TiglUsb driver ?"<br> > Which of course, have been installed in C:\WINNT\System32\drivers, the > original files being in C:\Program Files\TiLP-II\slvdrvXP.<br> > The "240" is sometimes replaced by "1020".<br> > <br> > Hope that helps.<br> > <br> > Have you an idea as for why the TiglUsb driver isn't detected ?<br> > <pre class=3D"moz-signature" cols=3D"72">-- > [ftp83+], > Webmaster de <a class=3D"moz-txt-link-freetext" > href=3D"http://www.ftp83plus.net">http://www.ftp83plus.net</a> 's webma= ster. > </pre> > </body> > </html> > > Using Tomcat but need to do more? Need to support web services, securit= y? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642_______________________________________________ > TiLP-users mailing list > TiL...@li... > https://lists.sourceforge.net/lists/listinfo/tilp-users > --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-07-06 08:45:32
|
Hi, About the TI89T-USB & Linux issue, I have proceed into more investigation= s... It seems there is a kernel issue aka Titanium is: - working fine with a 2.4.32 kernel and any libusb version (0.1.9 & 0.1.1= 2), - is not working with 2.6.7, 2.6.15, 2.6.17 kernels and any libusb versio= n. We have a _real_ problem! roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-07-03 16:39:08
|
Hi, I haev just upload on SF.net a new tilibs2 tarball which contains modifie= d ticables2 library. This tarball makes TI84+ useable thru DirectLink. roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-07-03 11:13:05
|
Hi, I have fixed linux issue (TI84+ only, Titanium has another problem). A new beta release will be available on SF as soon as possible. Regards, roms. Eli Crumrine a =E9crit : > Romain Li=E9vin <ro...@li...> | Sat, 24 Jun 2006 23:19:10 +0200 (CE= ST) > >> > nothing has changed in the related tilibs code, I decided to try >> > different versions of libusb. >> > >> > Originally I had libusb 0.1.10a installed on my Gentoo system. >> >> I had 0.1.12 =3D> unsuccesful. >> >> > Version 0.1.12 was available, so I upgraded to it. I then rebuilt >> > tilibs* and tilp-2 with the new libusb. The same error occurs. >> > Later today I may try to perform regression tests with different >> > libusb builds, but that will require time. >> >> This is what I intended to do. Another possible test was regressing my >> kernel version (2.6.15 -> 2.6.9 for instance). >> >> I noticed timeout when releasing the USB device (/proc/bus/usb ?). > > I know you said you were on Debian too, so you will probably try the > same thing, but I can easily test the libusb versions in stable and > oldstable, since 0.1.12 (the one in unstable) does not work. > > Testing also has 0.1.12, so I guess that won't be any help. Mike Mohr > said 0.1.10a (.orig version in stable) doesn't work, but I might as > well give the Debian package (and patches) a shot. Oldstable has 0.1.5 > + Debian patches, so I will check that. > > Past that, I guess it is source :(. > > I will get back to the list tomorrow about the results of this. > > -- > 2006:06:25 > Eli C. > > Using Tomcat but need to do more? Need to support web services, securit= y? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > TiLP-devel mailing list > TiL...@li... > https://lists.sourceforge.net/lists/listinfo/tilp-devel > --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-07-02 17:08:28
|
Hi, I'm proud to tell you that TI84+ USB support worked and is working again under Linux. The issue has been located into the ticables2 library (maximum USB packet size was hand-coded). This explains why SilverLink cable was working altough DirectLink was broken. Please note that Titanium USB seems not to be working again but I'm not sure it worked before (this hand-helds behaves differently of TI84+ with linux USB: lsusb, libusb and kernel configurations). Romain. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-06-29 06:27:55
|
Hi, > I think I have an old version of tilibs2 from January kicking around he= re > somewhere, what me to send em to you? Please do. > > -Tyler roms. > >> Hi, >> >> some (bad) news: I have done some regression tests without success: >> - kernel 2.4.32, 2.6.7 and 2.6.17 >> - libusb 0.1.9 and 0.1.12 >> - tilp v0.09 & tilp v'latest' >> >> All of those combinations failed to transfer any data but behaviour of >> TI84+ & Titanium is not always the same depending on the kernel/libusb= . >> >> In the next few days, I will try and write a special testing program i= n >> oder to test my framework, again. >> >> At this time being, I'm very annoyed by this bug. I hope to fix it... >> >> roms. >> -- >> Romain Li=E9vin : <ro...@li...> >> Web site : http://www.lievin.net >> "Linux, y'a moins bien mais c'est plus cher !" >> >> >> >> >> >> >> >> >> >> Using Tomcat but need to do more? Need to support web services, >> security? >> Get stuff done quickly with pre-integrated technology to make your job >> easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache >> Geronimo >> http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&da= t=3D121642 >> _______________________________________________ >> TiLP-devel mailing list >> TiL...@li... >> https://lists.sourceforge.net/lists/listinfo/tilp-devel >> > > > -- > -Tyler > TiLP Team Member > Websites I own: > http://www.tylerc.org/ > http://www.calcforge.org/ > > > Using Tomcat but need to do more? Need to support web services, securit= y? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > TiLP-devel mailing list > TiL...@li... > https://lists.sourceforge.net/lists/listinfo/tilp-devel > --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Tyler C. <ty...@ty...> - 2006-06-28 18:29:17
|
Hi, I think I have an old version of tilibs2 from January kicking around here somewhere, what me to send em to you? -Tyler > Hi, > > some (bad) news: I have done some regression tests without success: > - kernel 2.4.32, 2.6.7 and 2.6.17 > - libusb 0.1.9 and 0.1.12 > - tilp v0.09 & tilp v'latest' > > All of those combinations failed to transfer any data but behaviour of > TI84+ & Titanium is not always the same depending on the kernel/libusb. > > In the next few days, I will try and write a special testing program in > oder to test my framework, again. > > At this time being, I'm very annoyed by this bug. I hope to fix it... > > roms. > -- > Romain Liévin : <ro...@li...> > Web site : http://www.lievin.net > "Linux, y'a moins bien mais c'est plus cher !" > > > > > > > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > TiLP-devel mailing list > TiL...@li... > https://lists.sourceforge.net/lists/listinfo/tilp-devel > -- -Tyler TiLP Team Member Websites I own: http://www.tylerc.org/ http://www.calcforge.org/ |
From: Romain <ro...@li...> - 2006-06-28 17:22:48
|
Hi, some (bad) news: I have done some regression tests without success: - kernel 2.4.32, 2.6.7 and 2.6.17 - libusb 0.1.9 and 0.1.12 - tilp v0.09 & tilp v'latest' All of those combinations failed to transfer any data but behaviour of TI84+ & Titanium is not always the same depending on the kernel/libusb. In the next few days, I will try and write a special testing program in oder to test my framework, again. At this time being, I'm very annoyed by this bug. I hope to fix it... roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Romain <ro...@li...> - 2006-06-28 06:28:28
|
Hi, this mail informs you I'm still working on DirectLink & linux issue. I will have an important exam on July the 13-15th, thus don't expect I solve this problem very quicly... roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Eli C. <zy...@ve...> - 2006-06-25 06:04:32
|
Romain Li=E9vin <ro...@li...> | Sat, 24 Jun 2006 23:19:10 +0200 (CEST) > > nothing has changed in the related tilibs code, I decided to try > > different versions of libusb. > > > > Originally I had libusb 0.1.10a installed on my Gentoo system. >=20 > I had 0.1.12 =3D> unsuccesful. >=20 > > Version 0.1.12 was available, so I upgraded to it. I then rebuilt > > tilibs* and tilp-2 with the new libusb. The same error occurs. > > Later today I may try to perform regression tests with different > > libusb builds, but that will require time. >=20 > This is what I intended to do. Another possible test was regressing my > kernel version (2.6.15 -> 2.6.9 for instance). >=20 > I noticed timeout when releasing the USB device (/proc/bus/usb ?). I know you said you were on Debian too, so you will probably try the same thing, but I can easily test the libusb versions in stable and oldstable, since 0.1.12 (the one in unstable) does not work. Testing also has 0.1.12, so I guess that won't be any help. Mike Mohr said 0.1.10a (.orig version in stable) doesn't work, but I might as well give the Debian package (and patches) a shot. Oldstable has 0.1.5 + Debian patches, so I will check that. Past that, I guess it is source :(. I will get back to the list tomorrow about the results of this. --=20 2006:06:25 Eli C. |
From: Romain <ro...@li...> - 2006-06-24 21:19:32
|
Hi, > nothing has changed in the related tilibs code, I decided to try > different versions of libusb. > > Originally I had libusb 0.1.10a installed on my Gentoo system. I had 0.1.12 =3D> unsuccesful. > Version 0.1.12 was available, so I upgraded to it. I then rebuilt > tilibs* and tilp-2 with the new libusb. The same error occurs. Later > today I may try to perform regression tests with different libusb > builds, but that will require time. This is what I intended to do. Another possible test was regressing my kernel version (2.6.15 -> 2.6.9 for instance). I noticed timeout when releasing the USB device (/proc/bus/usb ?). > Its good though that you can reproduce the problem on your end ;) Another guy has the problem, too. > TIA > > Mike Thanks you very much for your time. Romain. > > Using Tomcat but need to do more? Need to support web services, securit= y? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > TiLP-devel mailing list > TiL...@li... > https://lists.sourceforge.net/lists/listinfo/tilp-devel > --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Mike M. <ak...@gm...> - 2006-06-24 20:51:40
|
Okay: Although the DirectLink cable hasn't ever worked for me, I'll trust your word that it was working at one time. Since you state that nothing has changed in the related tilibs code, I decided to try different versions of libusb. Originally I had libusb 0.1.10a installed on my Gentoo system. Version 0.1.12 was available, so I upgraded to it. I then rebuilt tilibs* and tilp-2 with the new libusb. The same error occurs. Later today I may try to perform regression tests with different libusb builds, but that will require time. Its good though that you can reproduce the problem on your end ;) Nothing since my last post has changed other than that; I am using the same code as before: tilibs2-20060623.tar.gz tilp2-0.17.tar.gz and hte same problems exist. /proc/bus/usb/* is world writable for testing. It is interesting though to note that tilp-2 reports that I don't have write permission: ticables-INFO: Check for lib-usb usability: ticables-INFO: usb filesystem (/proc/bus/usb): mounted ticables-INFO: node /proc/bus/usb/devices: exists ticables-INFO: permissions/user/group: -rw-rw-rw- root usb ticables-INFO: is user can r/w on device: no ticables-INFO: are others can r/w on device: yes ticables-INFO: found <TI89 Titanium>. my user account is in the usb group, but that shouldn't make a difference since the files are world writable: ls -alR /proc/bus/usb/ /proc/bus/usb/: total 0 drwxr-xr-x 5 root root 0 Jun 12 12:54 ./ dr-xr-xr-x 5 root root 0 Jun 12 12:55 ../ dr-xr-xr-x 2 root root 0 Jun 12 12:54 001/ dr-xr-xr-x 2 root root 0 Jun 12 12:54 002/ dr-xr-xr-x 2 root root 0 Jun 12 12:54 003/ -rw-rw-rw- 1 root usb 0 Jun 24 13:46 devices /proc/bus/usb/001: total 0 dr-xr-xr-x 2 root root 0 Jun 12 12:54 ./ drwxr-xr-x 5 root root 0 Jun 12 12:54 ../ -rw-rw-rw- 1 root usb 43 Jun 12 12:54 001 /proc/bus/usb/002: total 0 dr-xr-xr-x 2 root root 0 Jun 12 12:54 ./ drwxr-xr-x 5 root root 0 Jun 12 12:54 ../ -rw-rw-rw- 1 root usb 43 Jun 12 12:54 001 /proc/bus/usb/003: total 0 dr-xr-xr-x 2 root root 0 Jun 12 12:54 ./ drwxr-xr-x 5 root root 0 Jun 12 12:54 ../ -rw-rw-rw- 1 root usb 43 Jun 12 12:54 001 -rw-rw-rw- 1 root usb 77 Jun 12 12:54 002 TIA Mike |
From: uiewapz z. <lce...@ic...> - 2006-06-24 18:14:52
|
Hollywood Intermediate Inc. (SYM : H Y W I) Current Sh Price : $ 0.65 Follow the performance of this company, it is a real gold mine U have to see HYWI has performed like clockwork every time CO OverView H o l l y w o o d I n t e r m e d i a t e provides a proprietary technology of Digital Intermediate services to feature filmmakers for post-production for film mastering and restoration. This technology gives the filmmakers total creative control over the look of their productions. Whether shooting on film or acquiring in HD or SD video, H o l l y w o o d I n t e r m e d i a t e puts a powerful cluster of digital tools at the director's disposal to achieve stunning results on the big screen. Matchframe Digital Intermediate, a division of H o l l y w o o d I n t e r m e d i a t e, Inc., packages a full array of post-production services with negative handling expertise and cost-effective 2K digital intermediate and 35mm film out systems. The Digital Intermediate process eliminates current post-production redundancies by creating a single high-resolution master file from which all versions can be made, including all theatrical and High Definition formats. By creating a single master file with resolution higher than the current High Definition broadcast standards, the DI master file enables cinema and television distributors to extract and archive all current and future cinema and television formats including Digital Cinema, Television and High Definition. Red H0t News: H o l l y w o o d I n t e r m e d i a t e a provider of digital intermediate film mastering services, announced today that that its Matchframe Digital Intermediate (MDI) division is completing a digital intermediate for Chad Lowe's directorial debut, "Beautiful Ohio," starring William Hurt and Rita Wilson. READ MORE THIS IS HUGE H o l l y w o o d I n t e r m e d i a t e Expands the Creative Palette for Independent Filmmakers GLENDALE, CA--(MARKET WIRE)--May 31, 2006 -- H o l l y w o o d I n t e r m e d i a t e, Inc. A provider of digital intermediate film mastering services, announced today that its Matchframe Digital Intermediate division is currently providing full digital intermediate services for Super 16MM productions. H o l l y w o o d I n t e r m e d i a t e, Inc. (H Y W I . P K - News), a provider of digital intermediate film mastering services, announced that High Definition preview masters as part of its normal digital intermediate service offerings and workflow. "Typically, in current post-production workflow, HD dailies masters are edited into high quality preview masters including color timing, dirt removal, opticals and visual effects," said David Waters, H o l l y w o o d I n t e r m e d i a t e president. "Unfortunately, none of these processes translate to the theatrical release of the film as they must all be duplicated or repeated in either a higher resolution digital format, or photo chemical process." H o l l y w o o d I n t e r m e d i a t e gives Motion Picture producers the ability to scan their selected original camera negative at 2k or 4k film resolution, conform a high resolution digital master for theatrical and broadcast release including dirt removal, opticals and visual effects, and output a High Definition preview master to be used for preview screenings and focus groups that can be deployed in any worldwide theater location. "The challenge for completing the final editorial decisions on a motion picture are balanced between the ability to display the highest resolution picture for a test audience, and the costs and time in having to re-master your film based on a test audience response," said Jim Delany, H o l l y w o o d I n t e r m e d i a t e COO. DO your Due Diligence and you'll see what we are talking about when it comes to H Y W I ----------------------- Spring to mind. Timing is everything. Turn over a new leaf. Shit happens. Sweet as honey. Your barking up the wrong tree. A stick in the mud. Stubborn as a mule. She's a mother hen. Sweet as apple pie. Scraping the bottom of the barrel. Root it out. A weed is no more than a flower in disguise. Were you born in a barn? Your all washed up. Spaceship earth. Weed out. Welcome to my garden. They're like two peas in a pod. Water doesn't run uphill. Sweating blood. Spaceship earth. Timber! Sly as a fox. Rough as a cob. Top of the morning. When we love - we grow. A rolling stone gathers no moss. Too little too late. A place in the sun. You say potayto, I say potahto. A snail's pace. Salt of the Earth. Sweet as honey. Worry often gives a small thing a big shadow. Sow dry and set wet. Spring to mind. Watch and wait. |
From: Romain <ro...@li...> - 2006-06-24 09:22:24
|
Hi, >> Msg: attempting to use a cable which has not been open before. >> Cause: internal error >> System: No such file or directory (errno =3D 2) >> >> lsusb shows that the calculator is plugged in: >> >> Bus 003 Device 005: ID 0451:e004 Texas Instruments, Inc. TI-89 >> Titanium Calculator > > I can report the same error, using the same calculator and link. I also > tried running it as root, same error. > > kernel 2.6.17 > libusb 0.1.12 > same tilp/tilibs versions as Mike same config for me. > I'd like to help, if there's any additional info I can provide or any > other ways I might be helpful, please let me know. It seems I have a _real_ problem with DirectLink support under Linux. It worked some time ago; it does not work any longer. I sometimes noticed that lsusb is blocking even. I have to replug the whole hub to clear error. Better, I have written a special test program which send a ping packet to Titanium. It works once! After, I get the same error as you (no such file or directory). Need to replug the hub to make it work again. There are something weird. I don't know whether problem is related to ticables or libusb. But, I have changed nothing to ticables; I have just upgraded my debian. Thus, I suspect libusb to be responsible of this *$#&@=A3. Well, all is working fine with SilverLink and code is the same for both cable. Weird, isn't it ?! roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |
From: Simo L. <si...@ar...> - 2006-06-23 22:44:04
|
On Fri, Jun 23, 2006 at 03:21:27PM -0700, Mike Mohr wrote: > I downloaded the libraries and tilp from here: >=20 > http://sourceforge.net/project/showfiles.php?group_id=3D18378&package_id= =3D159925 >=20 > I then ran tilp like this: >=20 > tilp-2 --calc=3Dti89t --cable=3DDirectLink >=20 > I got a dialog box in X with some information: >=20 > Msg: attempting to use a cable which has not been open before. > Cause: internal error > System: No such file or directory (errno =3D 2) >=20 > I'm using tilp 0.17 with the following libraries (from about): >=20 > Framework version (cables=3D0.1.1, files=3D0.2.0, calcs=3D0.2.2, ticonv= =3D0.0.4) >=20 > Console output is as follows: >=20 > TiLP - Version 0.17, (C) 1999-2006 Romain Lievin > THIS PROGRAM COMES WITH ABSOLUTELY NO WARRANTY > PLEASE READ THE DOCUMENTATION FOR DETAILS > built on Jun 23 2006 15:06:06 > tilp-INFO: setlocale: <C> > tilp-INFO: bindtextdomain: <\locale> > tilp-INFO: textdomain: <tilp2> > ticables-INFO: cables library version 0.1.1 > ticables-INFO: setlocale: <C> > ticables-INFO: bindtextdomain: </usr/local/share/locale> > ticables-INFO: textdomain: <libticables2> > tifiles-INFO: tifiles library version 0.2.0 > tifiles-INFO: setlocale: <C> > tifiles-INFO: bindtextdomain: </usr/local/share/locale> > tifiles-INFO: textdomain: <libtifiles2> > ticalcs-INFO: ticalcs library version 0.2.2 > ticalcs-INFO: setlocale: <C> > ticalcs-INFO: bindtextdomain: </usr/local/share/locale> > ticalcs-INFO: textdomain: <libticalcs2> > ticables-INFO: Check for lib-usb usability: > ticables-INFO: usb filesystem (/proc/bus/usb): mounted > ticables-INFO: node /proc/bus/usb/devices: exists > ticables-INFO: permissions/user/group: -rw-rw-rw- root usb > ticables-INFO: is user can r/w on device: no > ticables-INFO: are others can r/w on device: yes > tilp-INFO: Msg: illegal operation or argument. > Cause: the program which uses this library is buggy. Fire-up the develope= r! > System: Inappropriate ioctl for device (errno =3D 25) >=20 >=20 > tilp-INFO: tilp_device_err catched error 51 >=20 > I've set global read-write permissions set on /proc/bus/usb* just to > make sure nothing is wrong with file access. >=20 > lsusb shows that the calculator is plugged in: >=20 > Bus 003 Device 005: ID 0451:e004 Texas Instruments, Inc. TI-89 > Titanium Calculator >=20 > Any help is appreciated :) >=20 I can report the same error, using the same calculator and link. I also=20 tried running it as root, same error. kernel 2.6.17 libusb 0.1.12 same tilp/tilibs versions as Mike I'd like to help, if there's any additional info I can provide or any other ways I might be helpful, please let me know. --=20 Simo Leone Arch Linux Developer |
From: Mike M. <ak...@gm...> - 2006-06-23 22:21:32
|
I downloaded the libraries and tilp from here: http://sourceforge.net/project/showfiles.php?group_id=18378&package_id=159925 I then ran tilp like this: tilp-2 --calc=ti89t --cable=DirectLink I got a dialog box in X with some information: Msg: attempting to use a cable which has not been open before. Cause: internal error System: No such file or directory (errno = 2) I'm using tilp 0.17 with the following libraries (from about): Framework version (cables=0.1.1, files=0.2.0, calcs=0.2.2, ticonv=0.0.4) Console output is as follows: TiLP - Version 0.17, (C) 1999-2006 Romain Lievin THIS PROGRAM COMES WITH ABSOLUTELY NO WARRANTY PLEASE READ THE DOCUMENTATION FOR DETAILS built on Jun 23 2006 15:06:06 tilp-INFO: setlocale: <C> tilp-INFO: bindtextdomain: <\locale> tilp-INFO: textdomain: <tilp2> ticables-INFO: cables library version 0.1.1 ticables-INFO: setlocale: <C> ticables-INFO: bindtextdomain: </usr/local/share/locale> ticables-INFO: textdomain: <libticables2> tifiles-INFO: tifiles library version 0.2.0 tifiles-INFO: setlocale: <C> tifiles-INFO: bindtextdomain: </usr/local/share/locale> tifiles-INFO: textdomain: <libtifiles2> ticalcs-INFO: ticalcs library version 0.2.2 ticalcs-INFO: setlocale: <C> ticalcs-INFO: bindtextdomain: </usr/local/share/locale> ticalcs-INFO: textdomain: <libticalcs2> ticables-INFO: Check for lib-usb usability: ticables-INFO: usb filesystem (/proc/bus/usb): mounted ticables-INFO: node /proc/bus/usb/devices: exists ticables-INFO: permissions/user/group: -rw-rw-rw- root usb ticables-INFO: is user can r/w on device: no ticables-INFO: are others can r/w on device: yes tilp-INFO: Msg: illegal operation or argument. Cause: the program which uses this library is buggy. Fire-up the developer! System: Inappropriate ioctl for device (errno = 25) tilp-INFO: tilp_device_err catched error 51 I've set global read-write permissions set on /proc/bus/usb* just to make sure nothing is wrong with file access. lsusb shows that the calculator is plugged in: Bus 003 Device 005: ID 0451:e004 Texas Instruments, Inc. TI-89 Titanium Calculator Any help is appreciated :) TIA Mike |
From: Romain <ro...@li...> - 2006-06-23 20:18:12
|
Hi, > ticables-INFO: found <TI89 Titanium>. > ticalcs-INFO: Checking hand-held status: > > (tilp-2:18160): ticables-WARNING **: usb_bulk_write (error submitting > URB: No such file or directory). err, we have the same problem! > Hope I can be of help. This is Debian unstable with kernel 2.6.16 > (debian package). Very helpful! I haev Debian unstable with kernel 2.6.17, too. I can tell that DirectLink support is quite broken for an unknown reason = :-( I'm about to reinstall for Debian stable and do more tests... roms. --=20 Romain Li=E9vin : <ro...@li...> Web site : http://www.lievin.net "Linux, y'a moins bien mais c'est plus cher !" |