This repository was archived by the owner on Feb 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 1111
1212## Table of Contents
1313
14-
14+ * [ Important Breaking Change from v1.5.0 ] ( #Important-Breaking-Change-from-v150 )
1515* [ Why do we need the new Async AsyncHTTPRequest_Generic library] ( #why-do-we-need-this-async-asynchttprequest_generic-library )
1616 * [ Features] ( #features )
1717 * [ Supports] ( #supports )
8181* [ License and credits] ( #license-and-credits )
8282* [ Copyright] ( #copyright )
8383
84+ ---
85+ ---
86+
87+ ### Important Breaking Change from v1.5.0
88+
89+ Please have a look at [ HOWTO Fix ` Multiple Definitions ` Linker Error] ( #howto-fix-multiple-definitions-linker-error )
90+
91+ From v1.5.0, you must use
92+
93+ ```
94+ #include <AsyncHTTPRequest_Generic.h> //https://github.com/khoih-prog/AsyncHTTPRequest_Generic
95+
96+ // To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
97+ #include <AsyncHTTPRequest_Impl_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic
98+ ```
99+
100+ instead of only
101+
102+ ```
103+ #include <AsyncHTTPRequest_Generic.h> //https://github.com/khoih-prog/AsyncHTTPRequest_Generic
104+ ```
105+
106+
84107---
85108---
86109
You can’t perform that action at this time.
0 commit comments