Embedded AI Series – A Simple Header File to Quickly Enable HTTP Capabilities for Rockchip RV1126_RV1109 AI Applications

Embedded AI Series - A Simple Header File to Quickly Enable HTTP Capabilities for Rockchip RV1126_RV1109 AI Applications

1. Introduction In embedded AI application development, we often need to add HTTP network interfaces to devices for remote control, data upload, or information queries. Traditional methods often require introducing complex dependency libraries, which can be cumbersome. In practical development, I prefer using a single header file solution, such as cpp-httplib, which is a single-header … Read more

cpp-httplib: A Minimalist HTTP/HTTPS Server and Client Library in C++

cpp-httplib: A Minimalist HTTP/HTTPS Server and Client Library in C++ cpp-httplib is a header-only C++ library developed by yhirose for quickly creating HTTP/HTTPS servers and clients. It is popular in the C++ community due to its simple API, zero dependencies (only requires the SSL library provided by the operating system), and ease of integration. 1. … Read more