mirror of
https://github.com/xushoucai/RTL8710_SDK_GCC_VERSION.git
synced 2024-11-24 05:24:15 +00:00
905d81784e
including cross compilation of the installation, compile, link, run, debug, and so on. SDK implementation of the function: 1, WiFi connection settings (including AP mode and STA mode). 2, peripheral resource control (including GPIO, SPI, UART, IIC, etc.). 3, the user uses the sample method.
10 lines
327 B
C
10 lines
327 B
C
#ifndef _HTTP_H_
|
|
#define _HTTP_H_
|
|
|
|
char *http_post_header(char *address, char *resource, char *type, int data_len);
|
|
char *http_get_header(char *address, char *resource);
|
|
char *http_response_header(char *buf, int response_len);
|
|
char *http_response_body(char *buf, int response_len);
|
|
void http_free(void *buf);
|
|
|
|
#endif
|