Skip to content

Commit

Permalink
Fix TcpClient macro bug (#6)
Browse files Browse the repository at this point in the history
* Add TCP Client driver

* TcpClient bug fixes

* Fix macro bug
  • Loading branch information
ethancheez authored Aug 2, 2023
1 parent 428821e commit fd16a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Arduino/Drv/TcpClient/TcpClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void TcpClient ::schedIn_handler(const NATIVE_INT_TYPE portNum, NATIVE_UINT_TYPE
return;
}

Fw::Buffer recvBuffer = this->allocate_out(0, STATIC_MEMORY_ALLOCATION_SIZE);
Fw::Buffer recvBuffer = this->allocate_out(0, Svc::STATIC_MEMORY_ALLOCATION_SIZE);

int byte = 0;
NATIVE_UINT_TYPE count = 0;
Expand Down

0 comments on commit fd16a7c

Please sign in to comment.