-
Notifications
You must be signed in to change notification settings - Fork 492
Include ArduinoJson directly in our library and parse json. #79
Conversation
@@ -0,0 +1,2 @@ | |||
These are packages that we depend upon. They may need to be trimmed, all .cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we use a submodule? or subtree to track this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, we need a subset of the repo, if we include the whole thing arduino will try to compile their tests too. I cannot find a way to submodule or subtree only part of a repo.
Also since they do actual releases it may be nicer to stay synced to actual releases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe a submodule w/ symlinks in src/
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I considered that too but from what I gather symlinks in git don't work very well on windows machines.
LGTM |
const String& json() const { | ||
return json_; | ||
} | ||
|
||
private: | ||
String json_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can remove that field :)
No description provided.