Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - roberto

Pages: 1 ... 37 38 [39] 40 41 ... 54
571
Storage / Re: Someone has seen this before os2.ini
« on: March 15, 2017, 10:24:42 pm »
I just saw this problem on another pc.

The size that the system says it has, does not match the size of the backups.
The logical thing if the disk is full is to remove files to make space.
But the question is what happens if I add more files, since the space in use DRECREASE.

Saludos

572
Applications / Re: Can I use a usb port as a com-port?
« on: March 14, 2017, 10:38:31 pm »
Thank you very much, it is more than I expected.
But it does not work, :

[d:\usbreles]reles
MODE COM8:9600,N,8,1,BUFFER=OFF,TO=ON
The MODE parameter BUFFER= is not supported by this COM port.
sending 0x50 command
obtaining response
response:
sending 0x51 command
sending 0xFF control
sending 0xFE control
waiting 5 seconds
sending 0xFF control

Saludos

573
Applications / Re: Can I use a usb port as a com-port?
« on: March 13, 2017, 07:23:30 pm »
Did you succeed in controlling your relay board?
No, It is a personal project of little importance. But if I engaged in communications I would starve.
Quote
What does MODE COM8 report?

[d:\usbreles]mode com8
baud     = 300                    parity   = NONE
databits = 8                      stopbits = 1
TO       = OFF                    XON      = OFF
IDSR     = OFF                    ODSR     = OFF
OCTS     = OFF                    DTR      = ON
RTS      = ON                     BUFFER   = N/A
Saludos

574
Multimedia / Re: USB Audio
« on: March 12, 2017, 10:50:59 pm »
I have a question to Wim.
After returning the config.sys to its correct state with the usbresmg.sys and restart. Run the cmd and show me this:with 2 devices, the external devices conected. The firts time that I see 2 devices only.
[d:\usbreles]usb-queryversion
+RxUsbQueryVersion(),RC=0x0
*RxUsbQueryVersion(),RC=0x0
USBCALLS 14.210
USBRESMG 14.210
-RxUsbQueryVersion(),RC=0x0
+RxUsbQueryNumberDevices(),RC=0x0
*RxUsbQueryNumberDevices(),RC=0x0
number 4
-RxUsbQueryNumberDevices(),RC=0x0

The question, Is it normal for the device list to show me the internal devices?
And I ask this because I only have two accessories connected. One wifi mouse, and relay board2303.
When I show the other two internal usb, if I pulse the wifi on / off one of them disappears and appears.

The 2 internal devices are:
<<< Device Description >>>
 Type            : 01
 USB Rev         : 200
 Class           : Unknown class E0
 Subclass        : Unknown Subclass E0
 Protocol        : Unknown Protocol E0
 Max. packetsize : 40
 Vendor  ID      : 03F0
 Product ID      : 231D
 Device Release# : 0306
 Strings:
  Manufacturer Name : Broadcom Corp
  Product Name      : HP Integrated Module
  Serial number     : Not implemented
 Number of Configurations : 1
----------------------------------------------
<<< Device Description >>>
 Type            : 01
 USB Rev         : 110
 Class           : Vendor specific
 Subclass        : Vendor specific
 Protocol        : Vendor specific
 Max. packetsize : 08
 Vendor  ID      : 138A
 Product ID      : 0007
 Device Release# : 0072
 Strings:
  Manufacturer Name : Not implemented
  Product Name      : Not implemented
  Serial number     : 00a058c13587
 Number of Configurations : 1
-----------------
saludos

575
Multimedia / Re: USB Audio
« on: March 12, 2017, 05:32:00 pm »
That's correct, but if I do not override usbresmg.sys, I do not have improvements with the videos. What is not exactly why?
I can also tell you that with different versions of usbresmg.sys, the program usbres.exe shows me different connected devices. Having physically the same. Without rem usbresmg.sys.

576
Multimedia / Re: USB Audio
« on: March 12, 2017, 03:51:08 pm »
Just to be sure,

have you ensured that USBCALLS.DLL was properly updated ?
yes, I install from another partition and have this:
2017/02/28  10:23:16  49098     C:\OS2\DLL\usbcalls.dll

Quote
It should be in the \OS2\DLL directory (only !)
Is ok.

 
Quote
and bldlevel.exe run against USBCALLS.DLL should tell you that it's version 10.215.

I have:
[C:\]bldlevel.exe c:\os2\dll\usbcalls.dll
Build Level Display Facility Version 6.12.675 Sep 25 2001
(C) Copyright IBM Corporation 1993-2001
Signature:       @#W.M.Brul:14.20170228#@USBCALLS
Vendor:          W.M.Brul
Revision:        14.20170228
File Version:    14.20170228
Description:     USBCALLS


Quote
I can see no reason that USBRESMG.SYS should interfere with USB audio unless you use it with something, in your case, that seems to be USBECD.SYS.
Yes, I have to connect the usb to the board for a good result.

Finally the firefox with youtuve, failed, but the improvement is considerable.

If I run the cmd that attach with the rem usbresmg.sys, show:
[d:\usbreles]usb-queryversion
+RxUsbQueryVersion(),RC=0x0
*RxUsbQueryVersion(),RC=0x1B58
USBCALLS 15356.6175
USBRESMG 4.0
-RxUsbQueryVersion(),RC=0x0
+RxUsbQueryNumberDevices(),RC=0x0
*RxUsbQueryNumberDevices(),RC=0x1B58
number NUMBER
-RxUsbQueryNumberDevices(),RC=0x0

0x1B58 - USB_NOT_INIT
  Library not initialized.
Code: [Select]
/* add RxUsbQueryVersion */
rc = RxFuncAdd('RxUsbQueryVersion','usbcalls','RxUsbQueryVersion')
say '+RxUsbQueryVersion(),RC=0x'd2x(rc)

/* invoke RxUsbQueryVersion */
drop DLLMajor DLLMinor /* receives usbcalls version */
drop USBMajor USBMinor /* receives usbresmg version */
rc = RxUsbQueryVersion(DLLMajor,DLLMinor,USBMajor,USBMinor)
say '*RxUsbQueryVersion(),RC=0x'd2x(rc)
say 'USBCALLS 'DLLMajor'.'DLLMinor
say 'USBRESMG 'USBMajor'.'USBMinor

/* drop RxUsbQueryVersion */
rc = RxFuncDrop('RxUsbQueryVersion')
say '-RxUsbQueryVersion(),RC=0x'd2x(rc)

/* add RxUsbQueryNumberDevices */
rc = RxFuncAdd('RxUsbQueryNumberDevices','usbcalls','RxUsbQueryNumberDevices')
say '+RxUsbQueryNumberDevices(),RC=0x'd2x(rc)

/* invoke RxUsbQueryNumberDevices */
drop Number /* receives number of devices */
rc = RxUsbQueryNumberDevices(Number)
say '*RxUsbQueryNumberDevices(),RC=0x'd2x(rc)
say 'number' number
/* drop RxUsbQueryNumberDevices */
rc = RxFuncDrop('RxUsbQueryNumberDevices')
say '-RxUsbQueryNumberDevices(),RC=0x'd2x(rc)

577
Multimedia / Re: USB Audio
« on: March 12, 2017, 10:36:49 am »
The fact is that I was trying to use a relay plate, which I have been unable to make it work.
It seems that not only is it trying to remove the usbresmg.sys, I also have to plug the relay board to the usb, with this in the config.sys:
 DEVICE = c: \ OS2 \ BOOT \ USBECD.SYS / D: 067B: 2303: 0300 / N: $ / S / V
Before starting firefox.
Now on this computer I am using Lars usb 10.215.
From my point of view, video crashes are a problem in the usb.

578
Multimedia / Re: USB Audio
« on: March 11, 2017, 11:33:34 pm »
My problem with youtube videos seems to have been solved simply with this:
Rem this line in config.sys and restart
REM 11-03-2017 DEVICE=C:\OS2\BOOT\USBRESMG.SYS

I have little tried but the difference is substantial.
And with different versions I appreciate important differences.
Saludos

579
Storage / Re: Someone has seen this before os2.ini
« on: February 03, 2017, 12:05:39 pm »
That's Ivan, they're the samba logs. I have modified the samba configuration, so that it does not generate such huge files.
Thank you

580
Storage / Re: Someone has seen this before os2.ini
« on: February 03, 2017, 09:13:09 am »
After leaving tonight on, making the copies, I find this:
Drive c: jfs boot partition in SSD
Yesterday - Lcm total size allocated 755.700kb (ok)
Today lcm - total size allocated 1.691M
The sistem show 28940692kb free, 30.683.344kb total
I lost this night 936.000kb

What does the computer do at night?
It only runs a few cmd s that call rar32 to make the copies to Nas units or to different units in the network.Running automatically with schedule

At this rate of almost 1gb per day, I have for 28 days before having to restore.

581
Storage / Re: Someone has seen this before os2.ini
« on: February 02, 2017, 06:32:30 pm »
Andi - I completely discard them as hidden or other files. Because what I did was move the hplip folder to free up space, and that the ini error, was saved correctly. Then I did the backup, and restore.

Neil - What you propose I do not think that alone is the problem. Among other things because I have another computer with two bootable partitions of 30gb without that problem.

On the pc with problems, I leave it on day and night on, for backups. And this affects the Samba client, forcing me to restart it every day. Also the memory does not recognize it correctly, with 4gb, and the virtualaddress in 3072mb, shows me approx. 3500mb. Or a combination of several things.

582
Storage / Re: Someone has seen this before os2.ini
« on: February 02, 2017, 01:03:34 pm »
I have not explained well, the error is in the hard disk space that the system thinks it has free.
The sistem show 0kb free aprox. 30.600.000kbtotal

The new laser comander1.07.04 show:
Total size allocated 29.944M (error)
But if I sum all the folders with lcm 755.700kb (ok)

After I made a backup, format, and restore:
The sistem show 29.909.140kb free, 30.683.344kb total (ok)
The lcm show total size allocated 764.336k (ok)

583
Storage / Someone has seen this before os2.ini
« on: February 02, 2017, 09:08:25 am »
Every approximately 2 minutes shows me the message of the photo.
The c: drive with the system is a 30gb partition with the system occupying only 1gb approximately.But if I open drives it shows me zero free space.

The system is an updated ecs22b2
The hard drive is a ssd thosiva.

584
Applications / Re: Can I use a usb port as a com-port?
« on: January 28, 2017, 06:31:59 pm »
Which circuit board is it? What documenmtation do you have?
The board is ICSE014A from http://www.icstation.com/icstation-channel-micro-relay-module-icse014a-p-5185.html
 2)Serial port using method

These modules can use the serial port to connect with other communication devices. These modules can receive the Single-byte instruction from the upper monitor.
Upper Monitor          0x50        0x51
ICSE012A          0xAB
ICSE013A          0xAD
ICSE014A          0xAC

These modules will work normally after they receive the "0X51" instruction. The bytes which these modules receive can control the modules directly and every singly byte control one channel of the module( "0" means start, "1"means stop).
The usb show that is a :
<<< Device Description >>>
 Type            : 01
 USB Rev         : 110
 Class           : Reserved (0)
 Subclass        : Reserved (0)
 Protocol        : Reserved (0)
  Device Information is defined at interface Level
 Max. packetsize : 40
 Vendor  ID      : 067B
 Product ID      : 2303
 Device Release# : 0300
 Strings:
  Manufacturer Name : Prolific Technology Inc.
  Product Name      : USB-Serial Controller
  Serial number     : Not implemented
 Number of Configurations : 1

 Configuration 0 :
  Lenght     : 39
  Name       : <NONE>
  Value      : 1
  Attributes : 0x80
  Power      : 100 mA
  Interfaces : 1

  Interface 0
   Alt Setting : 0
   Name        : <NONE>
   Class       : Vendor specific
   SubClass    : Vendor specific
   Protocol    : Vendor specific
   Endpoints   : 3

   Endpoint 0:
    Address     : 81
    Attributes  : 03
    Packetsize  : 000A
    Interval    : 1

   Endpoint 1:
    Address     : 02
    Attributes  : 02
    Packetsize  : 0040
    Interval    : 0

   Endpoint 2:
    Address     : 83
    Attributes  : 02
    Packetsize  : 0040
    Interval    : 0

Saludos


585
Applications / Re: Can I use a usb port as a com-port?
« on: January 28, 2017, 06:23:52 pm »
For a start you need USBCOM.SYS loaded with the other USB drivers. 
If you are right, the first thing is to include it in the config.sys with
DEVICE = c: \ OS2 \ BOOT \ USBCOM.SYS / V

thanks

Pages: 1 ... 37 38 [39] 40 41 ... 54