Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
InitializationResponse.cpp
00001 #include "InitializationResponse.h" 00002 00003 using namespace SmartLabMuRata; 00004 00005 InitializationResponse::InitializationResponse(Payload * payload) 00006 : Payload(payload) 00007 { } 00008 00009 SNICCode InitializationResponse::GetStatus() 00010 { 00011 return (SNICCode)GetData()[2]; 00012 } 00013 00014 int InitializationResponse::GetDefaultReceiveBufferSize() 00015 { 00016 return GetData()[3] << 8 | GetData()[4]; 00017 } 00018 00019 int InitializationResponse::GetMaximumUDPSupported() 00020 { 00021 return GetData()[5]; 00022 } 00023 00024 int InitializationResponse::GetMaximumTCPSupported() 00025 { 00026 return GetData()[6]; 00027 }
Generated on Fri Jul 15 2022 01:02:11 by
1.7.2