htc: implement mux side of connecting (and more)

This commit is contained in:
Michael Scire
2021-02-09 19:07:51 -08:00
committed by SciresM
parent 70aae4e27a
commit 42cf3f50d7
24 changed files with 474 additions and 12 deletions

View File

@@ -20,9 +20,10 @@
namespace ams::htclow {
constexpr inline const ChannelConfig DefaultChannelConfig = {
.flow_control_enabled = true,
.handshake_enabled = true,
.max_packet_size = 0xE000 + sizeof(PacketHeader),
.flow_control_enabled = true,
.handshake_enabled = true,
.initial_counter_max_data = 0,
.max_packet_size = 0xE000 + sizeof(PacketHeader),
};
}