mirror of
https://github.com/afska/gba-link-connection.git
synced 2026-03-21 17:44:21 -05:00
616 lines
20 KiB
C++
616 lines
20 KiB
C++
#ifndef LINK_WIRELESS_MULTIBOOT_H
|
|
#define LINK_WIRELESS_MULTIBOOT_H
|
|
|
|
// --------------------------------------------------------------------------
|
|
// A Wireless Multiboot tool to send small ROMs from a GBA to up to 4 slaves.
|
|
// --------------------------------------------------------------------------
|
|
// Usage:
|
|
// - 1) Include this header in your main.cpp file and add:
|
|
// LinkWirelessMultiboot* linkWirelessMultiboot =
|
|
// new LinkWirelessMultiboot();
|
|
// - 2) Send the ROM:
|
|
// LinkWirelessMultiboot::Result result = linkWirelessMultiboot->sendRom(
|
|
// romBytes, // for current ROM, use: ((const u8*)MEM_EWRAM)
|
|
// romLength, // in bytes
|
|
// "Multiboot", // game name
|
|
// "Test", // user name
|
|
// 0xFFFF, // game ID
|
|
// 2, // number of players
|
|
// [](LinkWirelessMultiboot::MultibootProgress progress) {
|
|
// // check progress.[state,connectedClients,percentage]
|
|
//
|
|
// u16 keys = ~REG_KEYS & KEY_ANY;
|
|
// return keys & KEY_START;
|
|
// // (when this returns true, the transfer will be canceled)
|
|
// }
|
|
// );
|
|
// // `result` should be LinkWirelessMultiboot::Result::SUCCESS
|
|
// --------------------------------------------------------------------------
|
|
|
|
#ifndef LINK_DEVELOPMENT
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
#include "_link_common.hpp"
|
|
|
|
#include "LinkRawWireless.hpp"
|
|
#include "LinkWirelessOpenSDK.hpp"
|
|
|
|
#ifndef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
|
|
/**
|
|
* @brief Enable logging.
|
|
* \warning Set `linkWirelessMultiboot->logger` and uncomment to enable!
|
|
*/
|
|
// #define LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
|
|
#endif
|
|
|
|
LINK_VERSION_TAG LINK_WIRELESS_MULTIBOOT_VERSION =
|
|
"vLinkWirelessMultiboot/v8.0.0";
|
|
|
|
#define LINK_WIRELESS_MULTIBOOT_MIN_ROM_SIZE (0x100 + 0xC0)
|
|
#define LINK_WIRELESS_MULTIBOOT_MAX_ROM_SIZE (256 * 1024)
|
|
#define LINK_WIRELESS_MULTIBOOT_MIN_PLAYERS 2
|
|
#define LINK_WIRELESS_MULTIBOOT_MAX_PLAYERS 5
|
|
#define LINK_WIRELESS_MULTIBOOT_TRY(CALL) \
|
|
LINK_BARRIER; \
|
|
if ((lastResult = CALL) != SUCCESS) { \
|
|
return finish(lastResult); \
|
|
}
|
|
#define LINK_WIRELESS_MULTIBOOT_TRY_SUB(CALL) \
|
|
LINK_BARRIER; \
|
|
if ((lastResult = CALL) != SUCCESS) { \
|
|
return lastResult; \
|
|
}
|
|
|
|
#ifdef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
|
|
#include <string>
|
|
#define _LWMLOG_(str) logger(str)
|
|
#else
|
|
#define _LWMLOG_(str)
|
|
#endif
|
|
|
|
/**
|
|
* @brief A Multiboot tool to send small ROMs from a GBA to up to 4 slaves via
|
|
* GBA Wireless Adapter.
|
|
*/
|
|
class LinkWirelessMultiboot {
|
|
private:
|
|
using u32 = Link::u32;
|
|
using u16 = Link::u16;
|
|
using u8 = Link::u8;
|
|
|
|
using CommState = LinkWirelessOpenSDK::CommState;
|
|
using Sequence = LinkWirelessOpenSDK::SequenceNumber;
|
|
using ClientHeader = LinkWirelessOpenSDK::ClientSDKHeader;
|
|
using ClientPacket = LinkWirelessOpenSDK::ClientPacket;
|
|
using ChildrenData = LinkWirelessOpenSDK::ChildrenData;
|
|
using SendBuffer =
|
|
LinkWirelessOpenSDK::SendBuffer<LinkWirelessOpenSDK::ServerSDKHeader>;
|
|
|
|
static constexpr int HEADER_SIZE = 0xC0;
|
|
static constexpr int SETUP_TX = 1;
|
|
static constexpr int GAME_ID_MULTIBOOT_FLAG = 1 << 15;
|
|
static constexpr int FRAME_LINES = 228;
|
|
static constexpr int MAX_INFLIGHT_PACKETS = 4;
|
|
static constexpr int FINAL_CONFIRMS = 3;
|
|
static constexpr u8 CMD_START[] = {0x00, 0x54, 0x00, 0x00, 0x00, 0x02, 0x00};
|
|
static constexpr u8 CMD_START_SIZE = 7;
|
|
static constexpr u8 BOOTLOADER_HANDSHAKE[][6] = {
|
|
{0x00, 0x00, 0x52, 0x46, 0x55, 0x2D},
|
|
{0x4D, 0x42, 0x2D, 0x44, 0x4C, 0x00}};
|
|
static constexpr u8 BOOTLOADER_HANDSHAKE_SIZE = 6;
|
|
static constexpr u8 ROM_HEADER_PATCH[] = {0x52, 0x46, 0x55, 0x2D, 0x4D, 0x42,
|
|
0x4F, 0x4F, 0x54, 0x00, 0x00, 0x00};
|
|
static constexpr u8 ROM_HEADER_PATCH_OFFSET = 4;
|
|
static constexpr u8 ROM_HEADER_PATCH_SIZE = 12;
|
|
|
|
public:
|
|
#ifdef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
|
|
typedef void (*Logger)(std::string);
|
|
Logger logger = [](std::string str) {};
|
|
#endif
|
|
|
|
enum Result {
|
|
SUCCESS,
|
|
INVALID_SIZE,
|
|
INVALID_PLAYERS,
|
|
CANCELED,
|
|
ADAPTER_NOT_DETECTED,
|
|
BAD_HANDSHAKE,
|
|
CLIENT_DISCONNECTED,
|
|
FAILURE
|
|
};
|
|
enum State { STOPPED, INITIALIZING, WAITING, PREPARING, SENDING, CONFIRMING };
|
|
|
|
struct MultibootProgress {
|
|
State state = STOPPED;
|
|
u32 connectedClients = 0;
|
|
u32 percentage = 0;
|
|
volatile bool* ready = nullptr;
|
|
};
|
|
|
|
/**
|
|
* @brief Sends the `rom`. Once completed, the return value should be
|
|
* `LinkWirelessMultiboot::Result::SUCCESS`.
|
|
* @param rom A pointer to ROM data.
|
|
* @param romSize Size of the ROM in bytes. It must be a number between
|
|
* `448` and `262144`. It's recommended to use a ROM size that is a multiple
|
|
* of `16`, as this also ensures compatibility with Multiboot via Link Cable.
|
|
* @param gameName Game name. Maximum `14` characters + null terminator.
|
|
* @param userName User name. Maximum `8` characters + null terminator.
|
|
* @param gameId `(0 ~ 0x7FFF)` Game ID.
|
|
* @param players The exact number of consoles that will download the ROM.
|
|
* Once this number of players is reached, the code will start transmitting
|
|
* the ROM bytes.
|
|
* @param listener A function that will be continuously invoked. If it returns
|
|
* `true`, the transfer will be aborted. It receives a
|
|
* `LinkWirelessMultiboot::MultibootProgress` object with details.
|
|
* @param keepConnectionAlive If a `true`, the adapter won't be reset after a
|
|
* successful transfer, so users can continue the session using
|
|
* `LinkWireless::restoreExistingConnection()`.
|
|
* \warning You can start the transfer before the player count is reached by
|
|
* running `*progress.ready = true;` in the `listener` callback.
|
|
* \warning Blocks the system until completion or cancellation.
|
|
*/
|
|
template <typename C>
|
|
Result sendRom(const u8* rom,
|
|
u32 romSize,
|
|
const char* gameName,
|
|
const char* userName,
|
|
const u16 gameId,
|
|
u8 players,
|
|
C listener,
|
|
bool keepConnectionAlive = false) {
|
|
LINK_READ_TAG(LINK_WIRELESS_MULTIBOOT_VERSION);
|
|
|
|
if (romSize < LINK_WIRELESS_MULTIBOOT_MIN_ROM_SIZE)
|
|
return INVALID_SIZE;
|
|
if (romSize > LINK_WIRELESS_MULTIBOOT_MAX_ROM_SIZE)
|
|
return INVALID_SIZE;
|
|
if (players < LINK_WIRELESS_MULTIBOOT_MIN_PLAYERS ||
|
|
players > LINK_WIRELESS_MULTIBOOT_MAX_PLAYERS)
|
|
return INVALID_PLAYERS;
|
|
|
|
resetState();
|
|
|
|
_LWMLOG_("starting...");
|
|
LINK_WIRELESS_MULTIBOOT_TRY(activate())
|
|
progress.state = INITIALIZING;
|
|
LINK_WIRELESS_MULTIBOOT_TRY(initialize(gameName, userName, gameId, players))
|
|
|
|
_LWMLOG_("waiting for connections...");
|
|
progress.state = WAITING;
|
|
LINK_WIRELESS_MULTIBOOT_TRY(waitForClients(players, listener))
|
|
|
|
_LWMLOG_("all players are connected");
|
|
progress.state = PREPARING;
|
|
|
|
_LWMLOG_("rom start command...");
|
|
LINK_WIRELESS_MULTIBOOT_TRY(sendRomStartCommand(listener))
|
|
|
|
_LWMLOG_("SENDING ROM!");
|
|
progress.state = SENDING;
|
|
LINK_WIRELESS_MULTIBOOT_TRY(sendRomBytes(rom, romSize, listener))
|
|
|
|
progress.state = CONFIRMING;
|
|
LINK_WIRELESS_MULTIBOOT_TRY(confirm(listener))
|
|
|
|
_LWMLOG_("SUCCESS!");
|
|
return finish(SUCCESS, keepConnectionAlive);
|
|
}
|
|
|
|
/**
|
|
* @brief Turns off the adapter and deactivates the library. It returns a
|
|
* boolean indicating whether the transition to low consumption mode was
|
|
* successful.
|
|
*/
|
|
bool reset() {
|
|
bool success = linkRawWireless.bye();
|
|
linkRawWireless.deactivate();
|
|
resetState();
|
|
return success;
|
|
}
|
|
|
|
#ifdef LINK_RAW_WIRELESS_ENABLE_LOGGING
|
|
/**
|
|
* @brief Sets a logger function.
|
|
* \warning This is internal API!
|
|
*/
|
|
void _setLogger(LinkRawWireless::Logger logger) {
|
|
linkRawWireless.logger = logger;
|
|
}
|
|
#endif
|
|
|
|
private:
|
|
LinkRawWireless linkRawWireless;
|
|
LinkWirelessOpenSDK linkWirelessOpenSDK;
|
|
MultibootProgress progress;
|
|
volatile bool readyFlag = false;
|
|
volatile Result lastResult;
|
|
ClientHeader lastValidHeader;
|
|
|
|
Result activate() {
|
|
if (!linkRawWireless.activate()) {
|
|
_LWMLOG_("! adapter not detected");
|
|
return ADAPTER_NOT_DETECTED;
|
|
}
|
|
_LWMLOG_("activated");
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
Result initialize(const char* gameName,
|
|
const char* userName,
|
|
const u16 gameId,
|
|
u8 players) {
|
|
if (!linkRawWireless.setup(players, SETUP_TX)) {
|
|
_LWMLOG_("! setup failed");
|
|
return FAILURE;
|
|
}
|
|
_LWMLOG_("setup ok");
|
|
|
|
if (!linkRawWireless.broadcast(gameName, userName,
|
|
gameId | GAME_ID_MULTIBOOT_FLAG)) {
|
|
_LWMLOG_("! broadcast failed");
|
|
return FAILURE;
|
|
}
|
|
_LWMLOG_("broadcast data set");
|
|
|
|
if (!linkRawWireless.startHost()) {
|
|
_LWMLOG_("! start host failed");
|
|
return FAILURE;
|
|
}
|
|
_LWMLOG_("host started");
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename C>
|
|
Result waitForClients(u8 players, C listener) {
|
|
LinkRawWireless::AcceptConnectionsResponse acceptResponse;
|
|
|
|
u32 currentPlayers = 1;
|
|
while ((linkRawWireless.playerCount() < players && !readyFlag) ||
|
|
linkRawWireless.playerCount() <= 1) {
|
|
if (listener(progress))
|
|
return CANCELED;
|
|
|
|
if (!linkRawWireless.acceptConnections(acceptResponse))
|
|
return FAILURE;
|
|
|
|
if (linkRawWireless.playerCount() > currentPlayers) {
|
|
currentPlayers = linkRawWireless.playerCount();
|
|
progress.connectedClients = currentPlayers - 1;
|
|
|
|
u8 lastClientNumber =
|
|
acceptResponse
|
|
.connectedClients[acceptResponse.connectedClientsSize - 1]
|
|
.clientNumber;
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(
|
|
handshakeClient(lastClientNumber, listener))
|
|
}
|
|
}
|
|
|
|
readyFlag = true;
|
|
|
|
if (!linkRawWireless.endHost(acceptResponse))
|
|
return FAILURE;
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename C>
|
|
Result handshakeClient(u8 clientNumber, C listener) {
|
|
ClientPacket handshakePackets[2] = {ClientPacket{}, ClientPacket{}};
|
|
volatile bool hasReceivedName = false;
|
|
|
|
_LWMLOG_("new client: " + std::to_string(clientNumber));
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeData(
|
|
clientNumber,
|
|
[this](LinkRawWireless::ReceiveDataResponse& response) {
|
|
return sendAndExpectData({}, 0, 1, response);
|
|
},
|
|
[](ClientPacket packet) { return true; }, listener))
|
|
// (initial client packet received)
|
|
|
|
_LWMLOG_("handshake (1/2)...");
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeACKData(
|
|
clientNumber,
|
|
[](ClientPacket packet) {
|
|
auto header = packet.header;
|
|
return header.n == 2 && header.commState == CommState::STARTING;
|
|
},
|
|
listener))
|
|
// (n = 2, commState = 1)
|
|
|
|
_LWMLOG_("handshake (2/2)...");
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeACKData(
|
|
clientNumber,
|
|
[&handshakePackets](ClientPacket packet) {
|
|
auto header = packet.header;
|
|
bool isValid = header.n == 1 && header.phase == 0 &&
|
|
header.commState == CommState::COMMUNICATING;
|
|
if (isValid)
|
|
handshakePackets[0] = packet;
|
|
return isValid;
|
|
},
|
|
listener))
|
|
// (n = 1, commState = 2)
|
|
|
|
_LWMLOG_("receiving name...");
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeACKData(
|
|
clientNumber,
|
|
[this, &handshakePackets, &hasReceivedName](ClientPacket packet) {
|
|
auto header = packet.header;
|
|
lastValidHeader = header;
|
|
if (header.n == 1 && header.phase == 1 &&
|
|
header.commState == CommState::COMMUNICATING) {
|
|
handshakePackets[1] = packet;
|
|
hasReceivedName = true;
|
|
}
|
|
return header.commState == CommState::OFF;
|
|
},
|
|
listener))
|
|
// (commState = 0)
|
|
|
|
_LWMLOG_("validating name...");
|
|
for (u32 i = 0; i < 2; i++) {
|
|
auto receivedPayload = handshakePackets[i].payload;
|
|
auto expectedPayload = BOOTLOADER_HANDSHAKE[i];
|
|
|
|
for (u32 j = 0; j < BOOTLOADER_HANDSHAKE_SIZE; j++) {
|
|
if (!hasReceivedName || receivedPayload[j] != expectedPayload[j]) {
|
|
_LWMLOG_("! bad payload");
|
|
return BAD_HANDSHAKE;
|
|
}
|
|
}
|
|
}
|
|
|
|
_LWMLOG_("draining queue...");
|
|
volatile bool hasFinished = false;
|
|
while (!hasFinished) {
|
|
if (listener(progress))
|
|
return CANCELED;
|
|
|
|
LinkRawWireless::ReceiveDataResponse response;
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(sendAndExpectData({}, 0, 1, response))
|
|
auto childrenData = linkWirelessOpenSDK.getChildrenData(response);
|
|
hasFinished = childrenData.responses[clientNumber].packetsSize == 0;
|
|
}
|
|
// (no more client packets)
|
|
|
|
_LWMLOG_("client " + std::to_string(clientNumber) + " accepted");
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename C>
|
|
Result sendRomStartCommand(C listener) {
|
|
for (u32 i = 0; i < progress.connectedClients; i++) {
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeNewData(
|
|
i,
|
|
linkWirelessOpenSDK.createServerBuffer(
|
|
CMD_START, CMD_START_SIZE, {1, 0, CommState::STARTING}, 1 << i),
|
|
listener))
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename C>
|
|
Result sendRomBytes(const u8* rom, u32 romSize, C listener) {
|
|
u8 firstPagePatch[LinkWirelessOpenSDK::MAX_PAYLOAD_SERVER];
|
|
for (u32 i = 0; i < LinkWirelessOpenSDK::MAX_PAYLOAD_SERVER; i++) {
|
|
firstPagePatch[i] =
|
|
i >= ROM_HEADER_PATCH_OFFSET &&
|
|
i < ROM_HEADER_PATCH_OFFSET + ROM_HEADER_PATCH_SIZE
|
|
? ROM_HEADER_PATCH[i - ROM_HEADER_PATCH_OFFSET]
|
|
: rom[i];
|
|
}
|
|
progress.percentage = 0;
|
|
|
|
LinkWirelessOpenSDK::MultiTransfer<MAX_INFLIGHT_PACKETS> multiTransfer(
|
|
&linkWirelessOpenSDK, romSize, progress.connectedClients);
|
|
|
|
while (!multiTransfer.hasFinished()) {
|
|
if (listener(progress))
|
|
return CANCELED;
|
|
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(ensureAllClientsAreStillAlive())
|
|
|
|
auto sendBuffer = multiTransfer.createNextSendBuffer(
|
|
multiTransfer.getCursor() == 0 ? (const u8*)firstPagePatch : rom);
|
|
|
|
LinkRawWireless::ReceiveDataResponse response;
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(sendAndExpectData(sendBuffer, response))
|
|
|
|
u32 newPercentage = multiTransfer.processResponse(response);
|
|
if (newPercentage != progress.percentage) {
|
|
progress.percentage = newPercentage;
|
|
_LWMLOG_("-> " + std::to_string(newPercentage));
|
|
}
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename C>
|
|
Result confirm(C listener) {
|
|
_LWMLOG_("confirming (1/2)...");
|
|
for (u32 i = 0; i < progress.connectedClients; i++) {
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(
|
|
exchangeNewData(i,
|
|
linkWirelessOpenSDK.createServerBuffer(
|
|
{}, 0, {0, 0, CommState::ENDING}, 1 << i),
|
|
listener))
|
|
}
|
|
|
|
_LWMLOG_("confirming (2/2)...");
|
|
for (u32 i = 0; i < FINAL_CONFIRMS; i++) {
|
|
LinkRawWireless::ReceiveDataResponse response;
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(
|
|
sendAndExpectData(linkWirelessOpenSDK.createServerBuffer(
|
|
{}, 0, {1, 0, CommState::OFF}, 0b1111),
|
|
response))
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename C>
|
|
Result exchangeNewData(u8 clientNumber, SendBuffer sendBuffer, C listener) {
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeData(
|
|
clientNumber,
|
|
[this, &sendBuffer](LinkRawWireless::ReceiveDataResponse& response) {
|
|
return sendAndExpectData(sendBuffer, response);
|
|
},
|
|
[&sendBuffer](ClientPacket packet) {
|
|
auto header = packet.header;
|
|
return header.isACK == 1 &&
|
|
header.sequence() == sendBuffer.header.sequence();
|
|
},
|
|
listener))
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename V, typename C>
|
|
Result exchangeACKData(u8 clientNumber, V validatePacket, C listener) {
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeData(
|
|
clientNumber,
|
|
[this, clientNumber](LinkRawWireless::ReceiveDataResponse& response) {
|
|
return sendAndExpectData(linkWirelessOpenSDK.createServerACKBuffer(
|
|
lastValidHeader, clientNumber),
|
|
response);
|
|
},
|
|
validatePacket, listener))
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
template <typename F, typename V, typename C>
|
|
Result exchangeData(u8 clientNumber,
|
|
F sendAction,
|
|
V validatePacket,
|
|
C listener) {
|
|
volatile bool hasFinished = false;
|
|
while (!hasFinished) {
|
|
if (listener(progress))
|
|
return CANCELED;
|
|
|
|
LinkRawWireless::ReceiveDataResponse response;
|
|
LINK_WIRELESS_MULTIBOOT_TRY_SUB(sendAction(response))
|
|
auto childrenData = linkWirelessOpenSDK.getChildrenData(response);
|
|
|
|
for (u32 i = 0; i < childrenData.responses[clientNumber].packetsSize;
|
|
i++) {
|
|
auto packet = childrenData.responses[clientNumber].packets[i];
|
|
auto header = packet.header;
|
|
if (validatePacket(packet)) {
|
|
hasFinished = true;
|
|
lastValidHeader = header;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
Result sendAndExpectData(SendBuffer sendBuffer,
|
|
LinkRawWireless::ReceiveDataResponse& response) {
|
|
return sendAndExpectData(sendBuffer.data, sendBuffer.dataSize,
|
|
sendBuffer.totalByteCount, response);
|
|
}
|
|
|
|
Result sendAndExpectData(const u32* data,
|
|
u32 dataSize,
|
|
u32 _bytes,
|
|
LinkRawWireless::ReceiveDataResponse& response) {
|
|
LinkRawWireless::CommandResult remoteCommand;
|
|
volatile bool success = false;
|
|
|
|
success =
|
|
linkRawWireless.sendDataAndWait(data, dataSize, remoteCommand, _bytes);
|
|
|
|
if (!success) {
|
|
_LWMLOG_("! sendDataAndWait failed");
|
|
return FAILURE;
|
|
}
|
|
|
|
if (remoteCommand.commandId != LinkRawWireless::EVENT_DATA_AVAILABLE) {
|
|
_LWMLOG_("! expected EVENT 0x28");
|
|
_LWMLOG_("! but got " + toHex(remoteCommand.commandId));
|
|
return FAILURE;
|
|
}
|
|
|
|
if (remoteCommand.dataSize > 0) {
|
|
u8 expectedActiveChildren = 0;
|
|
for (u32 i = 0; i < progress.connectedClients; i++)
|
|
expectedActiveChildren |= 1 << i;
|
|
u8 activeChildren = (remoteCommand.data[0] >> 8) & expectedActiveChildren;
|
|
|
|
if (activeChildren != expectedActiveChildren) {
|
|
_LWMLOG_("! client timeout [" + std::to_string(activeChildren) + "]");
|
|
_LWMLOG_("! vs expected: [" + std::to_string(expectedActiveChildren) +
|
|
"]");
|
|
return FAILURE;
|
|
}
|
|
}
|
|
|
|
success = linkRawWireless.receiveData(response);
|
|
|
|
if (!success) {
|
|
_LWMLOG_("! receiveData failed");
|
|
return FAILURE;
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
Result ensureAllClientsAreStillAlive() {
|
|
LinkRawWireless::SlotStatusResponse slotStatusResponse;
|
|
if (!linkRawWireless.getSlotStatus(slotStatusResponse))
|
|
return FAILURE;
|
|
|
|
if (slotStatusResponse.connectedClientsSize < progress.connectedClients)
|
|
return CLIENT_DISCONNECTED;
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
Result finish(Result result, bool keepConnectionAlive = false) {
|
|
if (result != SUCCESS || !keepConnectionAlive)
|
|
linkRawWireless.bye();
|
|
linkRawWireless.deactivate();
|
|
resetState();
|
|
return result;
|
|
}
|
|
|
|
void resetState() {
|
|
progress.state = STOPPED;
|
|
progress.connectedClients = 0;
|
|
progress.percentage = 0;
|
|
progress.ready = &readyFlag;
|
|
readyFlag = false;
|
|
lastValidHeader = ClientHeader{};
|
|
}
|
|
|
|
#ifdef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
|
|
template <typename I>
|
|
std::string toHex(I w, size_t hex_len = sizeof(I) << 1) {
|
|
static const char* digits = "0123456789ABCDEF";
|
|
std::string rc(hex_len, '0');
|
|
for (size_t i = 0, j = (hex_len - 1) * 4; i < hex_len; ++i, j -= 4)
|
|
rc[i] = digits[(w >> j) & 0x0F];
|
|
return rc;
|
|
}
|
|
#endif
|
|
};
|
|
|
|
extern LinkWirelessMultiboot* linkWirelessMultiboot;
|
|
|
|
#undef _LWMLOG_
|
|
|
|
#endif // LINK_WIRELESS_MULTIBOOT_H
|