Jump to content

wierd_w

Members
  • Content Count

    1,622
  • Joined

  • Last visited

Posts posted by wierd_w


  1. The 1up arcade cabinets are inexpensive--

     

    Yes, they are single-game.  However, you can get inexpensive HDMI driver boards for their LCD displays.  Their controllers are direct wired normal arcade style buttons.  They can be connected to something like a Picade-X hat on a pi 4. 

     

    Then you can run MAME on it, and have the polish of an inexpensive commercially made cabinet, with the advantages of a full MAME deployment inside.

     

     


  2. Not enough benefit, extra complexity in the system, more to fail.

     

    The LED driver is slimmer, probably more efficient.  Leaves more room in the bay for the necessary voltage regulation circuitry to provide the oddball voltages the PEB uses.

     

     

    Each PEB card is specc'd to have its own voltage regulators, and thus need GREATER than +12v, +5V, and pals.  IIRC, it's +8V +16V and -16V supplied by the PEB.

     

     

    One thing I have been considering is implementing "Automotive type" bladed fuses for the voltage rails to each slot. That way if a card creeps out of the socket and shorts, or some other mishap happens, it will burn that fuse on that rail, to that slot-- restricting the damage.

    • Like 1

  3. Been messing with that (Inland, black) PETG filament.

     

    It prints beautifully WHEN--

     

    Bed temperature turned way up to 80C on initial layer

    Nozzle temp turned to highest end of print temp (240C) for initial layer

    Print speed turned to "watch grass grow" speeds of between 15mm/sec and 20mm/sec on initial layer

    THICK layer of liquid PVA school glue painted on bed

    FAN OFF

     

    then-- once initial layer printed--

     

    235C nozzle

    70C bed

    25mm/sec to 30mm/sec print speed

    FAN OFF

     

    Painfully slow to watch print...  Printing faster (like the 50 to 60mm/sec speeds I get with PLA) causes excessive "tearing" and "Rippling" of the previously printed edge as the head passes, causing the material to ball up, leave defects, strings, and debris all over.

     

    A significant contributor is the rapid speed.  A fast rapid movement with combing on results in bits that were laid down on initial layer getting knocked off.

     

    I have been doing another test print of the PEB front bezel, with somewhat OK results.

     

    Initial testing suggests the PETG is quite sandable, but I like how the PLA prints better.

     

    • Like 1

  4. In theory:

     

    Printer ports and serial output devices are treated like any other file-like-device by linux, meaning you can write directly into one, and it goes out the port.  This means that if you set up named pipes to handle the transactions, and have some kind of DSR on the TI side to route the messages over that named pipe, you could print anything on anything.

     

    In practice:

     

    To my knowledge, while the framework exists in the TIPI and the PI, nobody has made such a DSR.

     

     

    Similar story for routing midi messages over TCP for the Pi to render.  (The Pi could handle any number of external midi devices, which could be addressed logically from the TI.)


  5. I tried a day ago.  Don't bother, the emulator crashes fast and hard as soon as I try launching classic99.  Not sure the cause exactly.

     

    Maybe it needs instructions not provided by the emulated CPU. (Only does a PIII class single core emulation.)


  6. I would take my SSD equipped MyCloud NAS and a hacked wifi router with me, personally.

     

    I can bring a lot of loot with me for very little space. The MyCloud is about the size of a fat book, and with a sata ssd inside it, you can bang it up what good in transit and be fine. I have mine hacked 7 ways to sunday, so it does all kinds of fun things (Including running a plex server). 

     

    I could bring several whole game libraries for several systems, not just the TI, with me that way. Pack a bluetooth gamepad, and maybe an HDMI cable.

    • Like 2

  7. Ok.  Not tonight though. Work. Tomorrow is good though.

     

    My good phone is currently too drained to take pics but heres a crappy one from the "work phone" (it takes awful pictures. My good phone is a galaxy S5, and takes nice ones) of a print i did of your map. Its just bond paper but still. 

     

    20191204_150945.thumb.jpg.9ff9f07a4dd9bcfd00b46bbd19dec7af.jpg

     

     

    • Like 3

  8. I might just take you up on it then.

     

    Does classic99 do savestates? It would be useful (rather than saving and loading the game over and over again) when validating all possible interactions, etc.

     

     

    Also, I DID print a sample of that map after Waifu2x-ing it.  It turned out pretty nice, all in all, other than the strangeness waifu did to it. Want pictures?


  9. I wish I had a SAMS; I would accept that offer.  I often get more enjoyment out of breaking games than I do playing them. 

    Sadly, part of doing this properly means "real hardware preferred", since you want to fix problems with your software, not experience "unintended FUN" from emulation not being 100%.


  10. Well...

     

    If you dont mind running an emulator .. In another emulator...  (Because derpier things have been done..)

     

    You can go for Eltech's windows emulator. (which is WINE + their proprietary x86 emulation core.)  You could theoretically put classic99 inside that. 

     

    I happen to have a copy installed on my phone (the windows emulator that is.)  I could give it a shot and see how well it works?

    • Like 1

  11. LOLOL

     

    Takeaways:

    N64 Elon Musk has derpier face than real Musk.

    Cybertruck can run over many pedestrians, and cause multiple explosions, but cannot handle a pebble hurled at its windshield.

    Cybertruck is actually fully self-driving, which is why it has no steering wheel. (It is also psychopathic and actively hates humans, which is why it runs over all the pedestrians)


  12. Better to just use some fancy shell scripts Omega.  TIPI is linux underneath, and that means fancy mountpoints are doable.  Especially if you have a NAS on your network.

    A quick blast of rsh over the telnet connection, and bob's your uncle. You can have entire volumes inside files, sitting on the NAS waiting to be mounted, for instance.

     

    EG, create a 2gb volume file like this--

     

    dd if=/dev/zero of=/mnt/samba/2gbvol.img BS=1M count=2048

     

    then put an ext4 file system on it with

     

    mkfs.ext4 /mnt/samba/2gbvol.img

     

    then you just mount it on top of your SD card as you need it.

    EG--

     

    mount -t ext4 /mnt/samba/2gbvol.img /mnt/sdcard/dsk1

     

    make sure the dsk1 folder is empty though!

    You can unmount it with

     

    sync && umount /mnt/sdcard/dsk1

     

    (just make sure nothing is using files on it though, otherwise it will error that the volume is in use, and cannot be unmounted.)

     

    rsh stands for "remote shell", and lets you send a one-liner over the telnet or ssh connection. On the pi side, just have some utility scripts set up that have these things inside. That way instead of '2gbvol.img' you could have 'DiskManagement', and your rsh could be something like

     

    rsh /home/tipi/MountDiskManagement.sh

     

    that would tell the pi to run that script. The script then executes and does any initial sync & unmount, followed by mounting your desired set there.

    There really shouldn't be a reason to remove the sdcard from the Pi... basically ever... if you set it up right.

     

     

    • Like 1
    • Thanks 1

  13. no... Not really.  I think his ink system may have a bad air pressurization unit.  The 1055CM uses a pressurized ink system that is basically an integrated "Bulk ink".  The tanks hold about half a liter each!!  If he used half a liter of ink on a poster, it would be sopping and dripping!

     

    (besides, they are not that expensive if you buy on ebay.  Alternatively, you can switch to generic bulk ink if you buy the right stuff at alibaba.

    • Like 1
×
×
  • Create New...