Jump to content

mozzwald

Members
  • Posts

    1,041
  • Joined

  • Last visited

Everything posted by mozzwald

  1. Can you capture some debug output of Fujinet starting up and scanning for networks? https://github.com/FujiNetWIFI/fujinet-platformio/wiki/FujiNet-Flasher#capturing-serial-debug-output
  2. Does it see any networks? If yes, then it may not like your router. Some routers that have the same ssid for 2.4G and 5G have been known to not work. I can't tell from the picture, does your WROVER module have the tiny IPEX antenna connector on it?
  3. If one appeared on my doorstep, I wouldn't complain, but I don't have $500 to throw down on a console and gobs more for games
  4. I just did less than 5 minutes of research and it appears the Jaglink is just a serial connection. This would be trivial to get started with FujiNet. All you really need to do is hookup the TX/RX/GND (optionally 5V) lines to an ESP32 and you're almost done. I assume the Jaguar uses 5V for logic levels which is absolutely fine and safe on the esp32. No need for level shifting, just hookup directly to the gpio pins. This is what we started with for the Lynx: A new bus/platform can be created in the code and tweaked for Jaguar, probably using Lynx a the basis. We can assist with that when you're ready, just hop onto the Discord server (or if you want to start a new thread here instead). Note, I don't have a Jaguar and no plans to get one so it's all on the Jaguar community to start this. We will help where we can.
  5. Perhaps the Prolific driver you were able to get installed still has some issues? I'm not sure if the NUC Fuji has it, but you could try holding button A then turn on the fuji and continue holding the button during the entire flash process.
  6. ALL the SIO signal lines are used so I recommend you hook them up to get full functionality. PROCEED & INTERRUPT are used for the network device, CLOCK lines are used for MIDIMaze, MOTOR for cassette emulation, AUDIO for SAM, and of course CMD & DATA are absolutely needed. I guess if you don't want a feature, you can leave it off, but you may as well hook em up now before you close it up
  7. Ahh, I thought you were having some off the shelf keycaps printed. How are you going to put legends on these?
  8. Where are you getting the low profile keycaps from?
  9. The python and fuse client were updated back in march and I'm not sure if it has my changes in it or not. https://github.com/FujiNetWIFI/spectranet-tnfs-fuse The fuse driver could be used to mount a tnfs server and copy files as if it were a local disk. I've been keeping disks updated from @bocianu with a shell script that downloads the image and compares my file to his and updates if needed. This isn't ideal, but it works for now I'd be happy to host files on fujinet.online if you want that to be 'the place'. All the files are also available directly for web download from https://fujinet.online/tnfs-data. I should change that to just /tnfs which would be easier and more memorable.
  10. Moar progress https://www.atariorbit.org/2022/07/18/this-week-in-fujinet-week-28/
  11. now that's an idea I can get behind, low profile would look much better
  12. Can you try the flasher for Ubuntu 21.10 and see if it works? https://fujinet.online/firmware/FujiNet-Flasher/FujiNet-Flasher_Ubuntu-21.10.tar.bz2
  13. cool, can't wait to see what you whip up!
  14. How are you planning to use this with FujiNet? Do tell
  15. That's great! I'll push the change to the repo and it will be in the next update
  16. I was able to move the wifi connect out of the regular setup and run it after the SIO service has started. This shaved 100-150ms off the boot time for me. Here is a test build you can try by running Fujinet Flasher from the command line. Let me know if it works FujiNet-Flasher /path/to/fujinet-ATARI-0.5.slow-boot-fix.zip fujinet-ATARI-0.5.slow-boot-fix.zip
  17. I'm not up to speed on using Atariwriter. Does it require your data disk as drive 1 only? You could make a backup of your real disks to ATR files on the FujiNet SD card. Then in FujiNet config, put Atariwriter XEX in slot 1 and your new disk image in slot 2. Boot. When you need your data disk in drive 1, press button A on fujinet to swap disks. You might also be able to keep the 1050 as drive 1, but turn it off. Mount the Atariwriter XEX and boot. When it's finished loading Atariwriter, turn off FujiNet and turn the disk drive on. I could be way off here, but it's something to try
  18. That should be fine. I'll PM you about an idea I have
  19. Are you using the same power supply when testing both machines? What is the SIO voltage reported in the webui when powered by SIO only and when external USB power is applied?
  20. Perhaps it doesn't like a character in your password? Not sure what is acceptable.
  21. We've made some progress. It works, with some lag / latency. I finally have a Lynx with working screen and we played a nice long round of Rampart the other day until Thom's batteries died Had a blast, and I kicked his ass
  22. A new firmware update is available from https://fujinet.online/download "version": "0.5.fd038d41", "version_date": "2022-06-05 01:37:38", "build_date": "2022-06-08 18:27:12", "description": "Fix HTTP auth bug, add UDPStream webui stop button", "git_commit": "fd038d41", "url": "https://fujinet.online/firmware/releases_atari/fujinet-ATARI-0.5.fd038d41.zip", "sha256": "c280c03dc92765942432f80a369f34601e999970925dbc3970f40544b28941a7" Fix HTTP auth bug. Thanks to @bocianu for finding it and @apc for the fix Add STOP button for UDPStream mode webui Correct/matching firmware version numbers this time, sorry! Please do not respond to this thread. If you have an issue, start a new post in the FujiNet subforum, open an issue on the github tracker or ask for assistance in Discord chat.
  23. Sorry, it's my fault. I put the wrong hash in the release zip file.
  24. A new firmware update is available from https://fujinet.online/download "version": "0.5.b28073ee", "version_date": "2022-05-31 02:48:41", "build_date": "2022-05-31 02:48:41", "description": "Fix JSON bug, replace MIDIMaze mode with UDPStream mode", "git_commit": "b28073ee", Fix bug in JSON parser Replace MIDIMaze mode with new UDP Stream mode The new UDP Stream mode expands the functionality of MIDIMaze mode. You can now open a UDP Port of your choosing to any hostname or ip address. This can be enabled via the web ui or from the new $F0 SIO Command for the Fuji Device $70. When this mode is enabled all serial data is sent out to the host/port via UDP packets and all received UDP packets are pushed back to the Atari. Any SIO command (triggered by the COMMAND line) will automatically turn this mode off and FujiNet will return to normal SIO processing. A good use case for this is fast action games. The idea for this change came from some experiments @tschak909 and I did over the weekend with the Atari Lynx where we successfully played a game of Rampart from roughly 2000 miles apart. Can't wait to see what you game devs can come up with for this. MIDIMaze mode will still work on port 5004 only. RTP MIDI typically uses port 5004 so I've reserved that port for MIDIMaze. MIDIMaze requires the CLK_IN line to be set so the SIO baud rate can be changed for MIDI data. When selecting a host and port 5004, this is automatically done on the FujiNet. Please do not respond to this thread. If you have an issue, start a new post in the FujiNet subforum, open an issue on the github tracker or ask for assistance in Discord chat.
  25. For those who use SIO2BT Bluetooth enabled builds of FujiNet firmware, there is a new update available that brings in all the latest changes. When running the fujinet-flasher, it's the second firmware in the list: 0.5.24fbef77-SIO2BT Please do not respond to this thread. If you have an issue, start a new post in the FujiNet subforum, open an issue on the github tracker or ask for assistance in Discord chat.
×
×
  • Create New...