We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a132cc8 commit c45f138Copy full SHA for c45f138
lib/device/sio/fuji.cpp
@@ -12,6 +12,8 @@
12
#include "fnSystem.h"
13
#include "fnConfig.h"
14
#include "fsFlash.h"
15
+#include "fnFsSPIFFS.h"
16
+#include "fnFsTNFS.h"
17
#include "fnWiFi.h"
18
19
#include "led.h"
@@ -1602,6 +1604,15 @@ void sioFuji::insert_boot_device(uint8_t d)
1602
1604
fBoot = fsFlash.file_open(mount_all_atr);
1603
1605
_bootDisk.mount(fBoot, mount_all_atr, 0);
1606
break;
1607
+ case 2:
1608
+ Debug_printf("Mounting lobby server\n");
1609
+ if (fnTNFS.start("tnfs.fujinet.online"))
1610
+ {
1611
+ Debug_printf("opening lobby.\n");
1612
+ fBoot = fnTNFS.file_open("/ATARI/_lobby.xex");
1613
+ _bootDisk.mount(fBoot,"/ATARI/_lobby.xex",0);
1614
+ }
1615
+ break;
1616
}
1617
1618
_bootDisk.is_config_device = true;
0 commit comments