Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
59 user(s) are online (44 user(s) are browsing Forums)

Members: 1
Guests: 58

328gts, more...

Headlines

Forum Index


Board index » All Posts (salass00)




Re: Write Error -44
Just can't stay away
Just can't stay away


@frl9lk

Assuming it's a positive 44 (i.e. if it was "Write Error - 44") then it could be a selection timeout (HFERR_SelTimeout is defined as 44).

Go to top


Re: TuneNet suggestion thread
Just can't stay away
Just can't stay away


@Chris

Maybe a file decriptor system like in datatypes could be used. That way the user could have full control over what plugins are used for what formats.

Go to top


Re: Assign command
Just can't stay away
Just can't stay away


@Swoop

Quote:

2. Assign TurboCalc: Work2:TurboCalc/TurboCalc


With this assign (assign pointing to the exe file itself) it would probably work if you typed TurboCalc: (note the colon character) into the default tool field. Then you wouldn't need the path command but you would have to edit the default tool field on all your files.

Go to top


Re: Let's make TuneNet plugins!
Just can't stay away
Just can't stay away


@spotUP

Just uploaded to OS4Depot:

TN_GSF.tnplug (GSF plugin based on PlayGSF)
TN_SC68.tnplug (SC68 plugin)

Go to top


Re: Assign command
Just can't stay away
Just can't stay away


@Swoop

Add

Path Turbocalc: ADD

to user-startup after the assign command.

Go to top


Re: Let's make TuneNet plugins!
Just can't stay away
Just can't stay away


@Chris

XMP or Aplayer?

Not that I'm working on either of them. I'm currently looking at SC68.

Go to top


Re: Amigans.net is 1 year old!
Just can't stay away
Just can't stay away


Happy Birthday!

Go to top


Re: Let's make TuneNet plugins!
Just can't stay away
Just can't stay away


@spotUP

TN_PSF.tnplug (PSF plugin based on SexyPSF)

Go to top


Re: id3 tags in tunenet
Just can't stay away
Just can't stay away


@Snuffy

Quote:

expat.library is for SDK and compiling.


You're confusing it with libexpat.a (static library).

The file expat.library (shared library) needs to be in LIBS: for programs that use it to work.

Programs that use the OS4 native expat.library include:
svg.datatype
TuneNet (for its skin system)

Go to top


Re: id3 tags in tunenet
Just can't stay away
Just can't stay away


@Mikey_C

expat.library?

Go to top


Re: Let's make TuneNet plugins!
Just can't stay away
Just can't stay away


@spotUP

I have just uploaded to OS4Depot:

TN_ACM.tnplug (Interplay ACM plugin based on libacm)
TN_WAVE.tnplug (RIFF-WAVE plugin based on wave.datatype)

I am currently working on:

RealAudio plugin based on RAPlay

Go to top


Re: MPlayer 1.0 RC2 - Leitmotiv Version
Just can't stay away
Just can't stay away


@Swoop

There needs to be a space between ">NIL:" and "-quiet". As it is it's trying to redirect output to "NIL:-quiet".

Go to top


Re: DHCP IP Address?
Just can't stay away
Just can't stay away


@Mikey_C

C:ShowNetStatus

Go to top


Re: OS installation under E-UAE
Just can't stay away
Just can't stay away


@nubechecorre

Try commenting out/removing the "scsi_device=ATAPI" line. I don't have it here and I have working CD-Rom in E-uae using uaescsi.device.

Go to top


Re: OS installation under E-UAE
Just can't stay away
Just can't stay away


@nubechecorre

No, they shouldn't. There is no file named "uaescsi.device". The device is created in memory (inside the emulation) by uae when you specify scsi=true in the config file. Same with "bsdsocket.library" (for this you have to set bsdsocket_emu=true).

Go to top


Re: CD/DVD burning tool
Just can't stay away
Just can't stay away


@joerg

When I run AmiDVD (v1.37 3.9.07) it opens a console window and then constantly outputs the following:

SCSI command 46 00 00 00 00 00 00 10 00 00 failed
 sense
70 00 05 00 00 00 00 0a 00 00 00 00 20 00 00 00 00 00


The drive is a Samsung CD-R/RW SW-212B.

[edit]
Tried with v1.38 and the same thing still happens...

Go to top


Re: RAID and AmigaOS 4.0
Just can't stay away
Just can't stay away


@pvanni

Well it should be possible, but unless both harddrives have the exact same RDB you will have to create DOSDrivers for the mirrored partitions (make sure that LowCyl and HighCyl are the same for both partitions when you create them).

"Media ToolBox" can be used to output DOSDrivers for partitions. Just remember to modify the device (swraid.device) and unit settings. Also you may want to add the line "Activate = 1" to the DOSDriver.

The same should apply to striped mode as well, except in this case you have to multiply either LowCyl/HighCyl or BlocksPerTrack by the amount of disks in your RAID.

Go to top


Re: OS installation under E-UAE
Just can't stay away
Just can't stay away


@nubechecorre

This is the DOSDriver I use:

/***************************************************************/
/*  CacheCDFS mountlist entry ? 2000 Amiga Inc.    */
/***************************************************************/
       
FileSystem     L:CacheCDFS /* The name of the game */
       
Device         "uaescsi.device" /* Name of exec device driver */
       
Unit           /* exec device unit */
       
Flags          /* OpenDevice flags */
       
BlocksPerTrack 351000 /* Unused */
       
BlockSize      2048 /* True, but unused */
       
Mask           0x7ffffffe /* Memory mask for direct read */
       
MaxTransfer    0x1000000 /* Maximum amount of bytes for direct read */
       
Reserved       /* Unused */
       
Interleave     /* Unused */
       
LowCyl         /* Unused */
       
HighCyl        /* Unused */
       
Surfaces       /* Unused */
       
Buffers        50 /* Number of cache lines */
       
BufMemType     /* MEMF_PUBLIC */
       
BootPri        /* Boot priority for MountCD */
       
GlobVec        = -/* Do not change! */
       
Mount          /* Mount it immediately */
       
Priority       10 /* Priority of FileSystem task */
       
DosType        0x43443031 /* Currently unused */
       
StackSize      3000 /* Minimum stack required is 3000! */
       
Control        "MD=1 LC=1 DC=8 L LV AL LFC=1 HR=.rsrc NTD AUDIO=Utilities/PlayCD"
   
/* The Control field is for special adjustments */
   /* L/S convert all file/volume names to lowercase */
   /* LV/S convert volume names to lowercase */
   /* AL/S Auto-Lower converts only non-Amiga CDs */
   /* LFC/N start converting at this character */
   /* LC/N/A number of blocks per cache line */
   /* DC/N/A number of cache lines for the data cache */
   /* MD/N/A number of blocks, when starting direct read, not using */
   /* the cache. 0 will be a reasonable default (LC*DC+1) */
   /* S/S Do SCSI direct commands, no Trackdisk like commands! */
   /* NC/S Do NOT use TD_ADDCHANGEINT, poll for DiskChange! */
   /* M/S Issue a TD_MOTOR (OFF) command after read */


I wasn't able to post it before as I wasn't at my A1 at the time.

You can place device and unit either in the tooltypes or in the file itself as above. Don't do both though as that will just lead to confusion.

Also I only have "scsi = true" in my E-UAE config. I have no idea what the "scsi_device=ATAPI" option does.

Go to top


Re: OS installation under E-UAE
Just can't stay away
Just can't stay away


@nubechecorre

IIRC you may have to type UAEscsi.device for it to work (exec device and library lists are case sensitive).

Go to top


Re: OS installation under E-UAE
Just can't stay away
Just can't stay away


@nubechecorre

Yes. Select the "uaegfx" driver during install, then replace the rtg.library in LIBS:Picasso96 with the one from E-UAE.

Go to top



TopTop
« 1 ... 79 80 81 (82) 83 84 85 ... 91 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project