Jump to content

mozzwald

Members
  • Posts

    1,034
  • Joined

  • Last visited

4 Followers

Contact / Social Media

Profile Information

  • Gender
    Male
  • Location
    Peoria, IL

Recent Profile Visitors

4,530 profile views

mozzwald's Achievements

Stargunner

Stargunner (7/9)

1.3k

Reputation

  1. I see a UART port on the PCB and some other interesting pins (UBOOT, RECOVER) Whose gunna dump the NAND?
  2. @Goochman you can follow the instructions above or power the FujiNet with a USB cable so that it is ready when the Atari boots. There are changes in the code to make Fujinet bootup faster but they are not available in a firmware update yet
  3. if your network doesn't support mDNS or it's not working, you can always put the IP address of your TNFS server instead of a name
  4. There's a section on the wiki about capturing debug output https://github.com/FujiNetWIFI/fujinet-firmware/wiki/FujiNet-Flasher#capturing-serial-debug-output This would help us try to figure out what the issue is on the latest firmware
  5. perhaps. I was thinking a separate printing server app to run on pc. TNFS doesn't really have anything to do with printing
  6. just an idea, maybe we could add a "server to ping" field in webui for the printer. when a print is done, it sends a message to a local server specified that file is ready. server grabs the pdf and prints it. someone would need to make the server side that does the printing
  7. Are you running the latest firmware version v1.2.0? I see the server is using chunked transfers which should have been fixed in the firmware last August.
  8. Click on a Host Slot to browse the files in the host, then select a file and select the slot... just like in CONFIG
  9. I just double checked and the webui does not have an option to create a new disk which would be useful for this. As a work around you could create a bunch of new disks from CONFIG on your SD Card or local TNFS server if you run one. Then use a disk copier of your choice to copy a disk to the blank disk image. When done, use the webui to mount the next blank disk and so on. No need to reboot to CONFIG each time with these steps.
  10. I've updated it to this: unsigned char input_select_slot_mode(char *mode) { unsigned char k = 0; while (1) { k = input_ucase(); switch (k) { case KCODE_ESCAPE: return 0; break; case 'W': mode[0] = 2; return 1; break; case KCODE_RETURN: case 'R': mode[0] = 1; return 1; break; default: break; } } }
  11. you could try the "file" or HTML printers
  12. You can always manually swap / re-mount disks with the web interface. I realize it's not as easy as pressing a button, but it achieves the same result.
  13. Nope, just the PDF file that you can send to a modern printer
  14. In your screenshot there you can see the disks have been swapped. Drive Slot 1 is marked D3 which means that disk is in Drive 3 and so on for the first 3 disks. Not sure what the deal is with slot 4. maybe you mounted it after the fact?
  15. This is by design. FujiNet will only swap disk 1 through X, X being the last sequential disk mounted. So if you have slots 1-4 and 7-8 mounted, it will only swap/rotate 1-4, leaving 7-8 as-is.
×
×
  • Create New...