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 1010
1111## Table of Contents
1212
13-
13+ * [ Important Breaking Change from v1.1.0 ] ( #Important-Breaking-Change-from-v110 )
1414* [ Why do we need the new Async Portenta_H7_AsyncHTTPRequest library] ( #why-do-we-need-this-async-Portenta_H7_AsyncHTTPRequest-library )
1515 * [ Features] ( #features )
1616 * [ Supports] ( #supports )
6161* [ License and credits] ( #license-and-credits )
6262* [ Copyright] ( #copyright )
6363
64+ ---
65+ ---
66+
67+ ### Important Breaking Change from v1.1.0
68+
69+ Please have a look at [ HOWTO Fix ` Multiple Definitions ` Linker Error] ( #howto-fix-multiple-definitions-linker-error )
70+
71+ From v1.1.0, you must use
72+
73+ ```
74+ #include <Portenta_H7_AsyncHTTPRequest.h> //https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest
75+
76+ // To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
77+ #include <Portenta_H7_AsyncHTTPRequest_Impl.h> // https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest
78+ ```
79+
80+ instead of only
81+
82+ ```
83+ #include <Portenta_H7_AsyncHTTPRequest.h> //https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest
84+ ```
85+
86+
6487---
6588---
6689
You can’t perform that action at this time.
0 commit comments