-
Notifications
You must be signed in to change notification settings - Fork 74
SIO Command $FE Get SSID
Thomas Cherryhomes edited this page Nov 4, 2022
·
6 revisions
This is a command for Device $70 - The FujiNet Device itself (see SIO-Commands-for-Device-ID-$70).
FujiNet will return the SSID (33 characters including at least one NULL character, at the end) and passphrase (64 characters) currently stored in its configuration.
Both string values are NUL terminated.
DCB | Value |
---|---|
DDEVIC | $70 |
DUNIT | $01 |
DCOMND | $FE |
DSTATS | $40 |
DBUF | Pointer to a 97 byte buffer to store returned SSID and password, example struct below |
DTIMLO | $0F |
DBYT | 97 |
DAUX1 | 0 |
DAUX2 | 0 |
/**
Network Configuration
*/
union
{
struct
{
char ssid[33];
char password[64];
};
unsigned char rawData[97];
} netConfig;
/**
* Read current SSID and password from SIO
*/
unsigned char config_set_ssid(void)
{
OS.dcb.ddevic=0x70;
OS.dcb.dunit=1;
OS.dcb.dcomnd=0xFE; // Get SSID
OS.dcb.dstats=0x40; // Peripheral->Computer
OS.dcb.dbuf=&netConfig.rawData;
OS.dcb.dtimlo=0x0f; // 15 second timeout
OS.dcb.dbyt=sizeof(netConfig.rawData);
OS.dcb.daux=0;
siov();
return OS.dcb.dstats;
}
- Set SSID
- Scan Networks
- Scan Result
Copyright 2024 Contributors to the FujiNetWIFI project.
Join us on Discord: https://discord.gg/7MfFTvD
- Home
- What is FujiNet?
- The Definition of Done
- Board bring up for FujiNet Platform.IO code
- The Complete Linux CLI Guide
- The Complete macOS CLI Guide
- Development Env for Apps
- FujiNet-Development-Guidelines
- System Quickstarts
- FujiNet Flasher
- Setting up a TNFS Server
- FujiNet Configuration File: fnconfig.ini
- AppKey Registry - SIO Command $DC Open App Key
- CP-M Support
- BBS
- Official Hardware Versions
- Prototype Board Revisions
- FujiNet Development Guidelines
- Atari Programming
- Apple Programming
- C64 Programming
- ADAM Programming
- Testing Plan
- Hacker List
- FujiNet VirtualMachine