Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
### Version v1.0.1

Add support to and tested working ***OK*** in other architectures such as ***Teensy, SAM, SAMD, stm32, eps8266, esp32*** besides AVR.
  • Loading branch information
khoih-prog authored Mar 2, 2020
1 parent a745a0c commit 42de2fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The original [vczh-libraries/Vlpp](https://github.com/vczh-libraries/Vlpp) provi

The `functional portion` of the project was then forked and modified to be used for Arduino by [Marcus Rugger functional-vlpp library](https://github.com/marcusrugger/functional-vlpp).

This is forked, modified to use and tested working ***OK*** in other architectures such as ***Teensy, SAM, SAMD, stm32, eps8266, esp32***.
This library is forked, modified to use and tested working ***OK*** in other architectures such as ***Teensy, SAM, SAMD, stm32, eps8266, esp32***.

This library can be used as a replacement of C++11 STL `std::function`.
For example, we can use `typedef vl::Func<void(void)> THandlerFunction` instead of `typedef std::function<void(void)> THandlerFunction` or `typedef void (*THandlerFunction)(void)`.
Expand All @@ -29,8 +29,8 @@ private:
void startConfigurationMode()
{
...
if (!server)
server = new EthernetWebServer;
if (!server)
server = new EthernetWebServer;

if (server)
{
Expand Down

0 comments on commit 42de2fd

Please sign in to comment.