This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Replies: 3
Views: 378
Tool/software: TI-RTOS
All,
i met error code -3001 when i debug HTTPGET demo, and this error code was defined as below:
/*!
* @brief Internal send buffer is not big enough
*
* Define HTTPClient_BUF_LEN in httpclient_internal.h and rebuild the library.
*/
#define HTTPClient_ESENDBUFSMALL (-3001)
so it needs to rebuild the library, but i cannot find these CCS project files at simplelink_cc32xx_sdk_2_10_00_04\source\ti\net\http, anyone knows how to rebuild this library?
/*! * Modify the HTTP client object's internal buffer length and rebuild the * library if needed. */#ifndef HTTPClient_BUF_LEN#define HTTPClient_BUF_LEN (1024) // original is 256#endif
thanks.
Linx
In reply to Vincent Rodriguez:
In reply to Michael Reymond:
copy httpclient.c into my project, then this issue was fixed.