Re: [Freedos-devel] CuteMouse v2.1 does not work on DELL Inspiron 1501...
Hi! (I would say "Hi NAME" but I cannot type Cyrillic, please suggest a spelling for your name in Latin...) > Hello all. New CuteMouse v2.1 is not work on the my notebook DELL > Inspiron 1501. In this notebook, mouse (touchpad) has detected as "PS/2 > mouse" and properly work with Microsoft Mouse Driver v8.20a (and v7.04, > too), and CuteMouse driver v1.9 has work properly. I run CTMOUSE.EXE > (v2.1) with "force PS/2 mode" (CTMOUSE /P), and CuteMouse wrote to me: > "Error: Device not found.". What this is a bug? Please fix it. Did you already try the option "/o" to disable the mouse wheel detection? Some BIOSes seem to have a bug here. They first let ctmouse detect the wheel, but then fail when trying to activate the wheel-extended data protocol. Version 2.1b3 supports /O but older 2.1 variants might be without /o support. By the way, did you also try version 2.0 already? :-) Eric - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
Re: [Freedos-devel] Help: TLINK commandline getting too long
The problem is with TLINK, not TLIB. Both TMAKE and FREECOM complain that after unrolling the variables, the commandline is too long and the command cannot be executed. Thus my question if there's something to do similar to the Watcom linker or to TLIB to use an external file. Aitor 2007/12/31, Arkady V.Belousov <[EMAIL PROTECTED]>: > Hi! > > 30-Дек-2007 21:46 [EMAIL PROTECTED] (Aitor Santamarэa) wrote to > freedos-devel@lists.sourceforge.net: > > AS> I'm trying to link a project with TLINK, where the commandline is > AS> getting too long (because of a large number of LIBs and OBJs that I > AS> have to link), and the @FILE.TXT trick of TLIB does not seem to work, > AS> or maybe I'm doing it wrong? > > I think, you do something wrong. May you show quote from your FILE.TXT > and which error gives TLIB? > > AS> Does anyone know of a way to outcome this problem? > > Firstly, you should explain your problem. > > - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ > ___ > Freedos-devel mailing list > Freedos-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/freedos-devel > - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
[Freedos-devel] CuteMouse v2.1 does not work on DELL Inspiron 1501...
Hello all. New CuteMouse v2.1 is not work on the my notebook DELL Inspiron 1501. In this notebook, mouse (touchpad) has detected as "PS/2 mouse" and properly work with Microsoft Mouse Driver v8.20a (and v7.04, too), and CuteMouse driver v1.9 has work properly. I run CTMOUSE.EXE (v2.1) with "force PS/2 mode" (CTMOUSE /P), and CuteMouse wrote to me: "Error: Device not found.". What this is a bug? Please fix it. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
Re: [Freedos-devel] New Mouse Driver Development...
Great! CuteMouse is good driver but is very slow in protected mode. F.e when playing Doom and you control it with mouse, it is jerky. (with another drivers is it OK). So test it also from this point of view. Why did you choose the 3.0 version of TP? Because it compiles into COM? Why not, but the disadvatage is that you can't use the assembler code. TP 3.0 understands only machine code. > Hello everybody! CuteMouse project is dead; I can develop new mouse driver for the FreeDOS project. This driver, named "FreeMouse", I started today. Please reply to me, I want that you help me writing correct autodetection of used mouse type, and handle the PS/2/COM/MSMouse's. I do not understand the architecture of the CuteMouse, which is written in assembler, but I write FreeMouse in the TurboPascal v3.0. Previously big thanks for all of this case! - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
Re: [Freedos-devel] New Mouse Driver Development...
Hi there :-) > Hello everybody! CuteMouse project is dead; I can develop new mouse > driver for the FreeDOS project. This driver, named "FreeMouse", I > started today. Please reply to me, I want that you help me writing Well maybe you did not wait long enough for a reply from Nagy Daniel: Current CuteMouse 2.1 development is done by me :-). So CuteMouse is not dead, but you are welcome to help :-). > correct autodetection of used mouse type, and handle the > PS/2/COM/MSMouse's. I do not understand the architecture of the > CuteMouse, which is written in assembler, but I write FreeMouse > in the TurboPascal v3.0. Previously big thanks for all of this case! I must admit that the CuteMouse source code is ugly but on the other hand it is small because it is written in Assembler :-). Current version 2.1b3 is here: www.coli.uni-saarland.de/~eric/ctmouse21b3.zip What I was planning to do next was to make the COM handling automatic: Maybe remove Mouse Systems (Genius) protocol or at least make it no supported by default. The current version has an option /Y ignore Mouse Systems, and most people should use it, because you cannot detect whether you talk to one of those mice or just to an empty serial port in a nice way ;-). So my plan is to make that "ignore Mouse Systems" the default. Then, only two main COM protocols are left: Logitech mouse and Microsoft Mouse protocol. My plan would be to change the code of "MSLTproc" to automatically decide for each packet which of the two protocols the packet is. Then you have hotplugging for COM mice :-). You also have a chance for hotplugging of PS2 mice already with 2.1, if you use the /O option to disable the wheel part (which is hard to re-bootstrap on the fly). Note that PS2 is not officially meant to support hotplugging, you might even damage old hardware by doing it? As this COM protocol autodecision is a bit tricky, you may want to write a Pascal version of it first, so I can port it to ASM for CuteMouse :-). Eric - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
Re: [Freedos-devel] New Mouse Driver Development...
Hi! 31-Дек-2007 14:44 [EMAIL PROTECTED] (Андрей Влащенко) wrote to freedos-devel@lists.sourceforge.net: АВ> Hello everybody! CuteMouse project is dead; Well, it long ago wasn't updated, but authors are here. АВ> I can develop new mouse driver АВ> for the FreeDOS project. New?!! Well, well... АВ> This driver, named "FreeMouse", I started today. АВ> Please reply to me, I want that you help me writing correct autodetection of АВ> used mouse type, and handle the PS/2/COM/MSMouse's. Read protocol.txt from CuteMouse package. АВ> I do not understand the АВ> architecture of the CuteMouse, It not hard. And you may ask me, if you not understand something. АВ> which is written in assembler, but I write АВ> FreeMouse in the TurboPascal v3.0. One of reasons for CuteMouse was small memory footprint. You not get small memory footprint in high level languages. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
Re: [Freedos-devel] Help: TLINK commandline getting too long
Hi! 30-Дек-2007 21:46 [EMAIL PROTECTED] (Aitor Santamarэa) wrote to freedos-devel@lists.sourceforge.net: AS> I'm trying to link a project with TLINK, where the commandline is AS> getting too long (because of a large number of LIBs and OBJs that I AS> have to link), and the @FILE.TXT trick of TLIB does not seem to work, AS> or maybe I'm doing it wrong? I think, you do something wrong. May you show quote from your FILE.TXT and which error gives TLIB? AS> Does anyone know of a way to outcome this problem? Firstly, you should explain your problem. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
Re: [Freedos-devel] New Mouse Driver Development...
Андрей Влащенко wrote: > Hello everybody! CuteMouse project is dead; > I can develop new mouse driver for the FreeDOS project. > This driver, named "FreeMouse", I started today. > Please reply to me, I want that you help me writing correct > autodetection of used mouse type, and handle the PS/2/COM/MSMouse's. > I do not understand the architecture of the CuteMouse, which is > written in assembler, but I write FreeMouse in the TurboPascal v3.0. > Previously big thanks for all of this case! CuteMouse possibly is not as dead as you might believe. But even if it is, it works at least and therefore you should first tell us what your driver is to make better than CuteMouse. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel
[Freedos-devel] New Mouse Driver Development...
Hello everybody! CuteMouse project is dead; I can develop new mouse driver for the FreeDOS project. This driver, named "FreeMouse", I started today. Please reply to me, I want that you help me writing correct autodetection of used mouse type, and handle the PS/2/COM/MSMouse's. I do not understand the architecture of the CuteMouse, which is written in assembler, but I write FreeMouse in the TurboPascal v3.0. Previously big thanks for all of this case! - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel