Skip to content

Commit 0d7c93e

Browse files
committed
First Fix of the NN model Ofloading with real data
1 parent f4c3519 commit 0d7c93e

File tree

31 files changed

+152
-95
lines changed

31 files changed

+152
-95
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
# heyot
2-
What about an offloading algorithm ? (Reforge)
3-
Evaluation and test, offloading for different types of neural network on esp32 device
1+
# HEYoT Neural Network Offloading Example
2+
What about an Offloading Algorithm and some Split Computing?
3+
4+
# Installation
5+
After giving us a star: You can download the repo and then start to configure all the infrastracture...
6+
7+
Within the folder "environment" you can find the ".env.dev" file. This file sets the variables for the MQTT configurations used by the MQTT Client on the Edge, other than some parameters for the DJango App
8+
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"type": "library", "name": "ArduinoJson", "version": "6.21.3", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "uri": null}}
1+
{"type": "library", "name": "ArduinoJson", "version": "6.21.4", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "uri": null}}

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
ArduinoJson: change log
22
=======================
33

4+
v6.21.4 (2023-12-07)
5+
-------
6+
7+
* Fix error `'std::string' has not been declared` (issue #1967)
8+
* Fix error `'std::string_view' has not been declared` (issue #1967)
9+
* Fix error `no instance of overloaded function...` on recent IAR compilers (issue #2001)
10+
411
v6.21.3 (2023-07-23)
512
-------
613

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(ESP_PLATFORM)
1010
return()
1111
endif()
1212

13-
project(ArduinoJson VERSION 6.21.3)
13+
project(ArduinoJson VERSION 6.21.4)
1414

1515
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
1616
include(CTest)

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
[![Continuous Integration](https://ci.appveyor.com/api/projects/status/m7s53wav1l0abssg/branch/6.x?svg=true)](https://ci.appveyor.com/project/bblanchon/arduinojson/branch/6.x)
99
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/arduinojson.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:arduinojson)
1010
[![Coveralls branch](https://img.shields.io/coveralls/github/bblanchon/ArduinoJson/6.x?logo=coveralls)](https://coveralls.io/github/bblanchon/ArduinoJson?branch=6.x)
11-
[![Arduino Library Manager](https://img.shields.io/static/v1?label=Arduino&message=v6.21.3&logo=arduino&logoColor=white&color=blue)](https://www.ardu-badge.com/ArduinoJson/6.21.3)
12-
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/bblanchon/library/ArduinoJson.svg?version=6.21.3)](https://registry.platformio.org/packages/libraries/bblanchon/ArduinoJson?version=6.21.3)
13-
[![ESP IDF](https://img.shields.io/static/v1?label=ESP+IDF&message=v6.21.3&logo=cpu&logoColor=white&color=blue)](https://components.espressif.com/components/bblanchon/arduinojson)
11+
[![Arduino Library Manager](https://img.shields.io/static/v1?label=Arduino&message=v6.21.4&logo=arduino&logoColor=white&color=blue)](https://www.ardu-badge.com/ArduinoJson/6.21.4)
12+
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/bblanchon/library/ArduinoJson.svg?version=6.21.4)](https://registry.platformio.org/packages/libraries/bblanchon/ArduinoJson?version=6.21.4)
13+
[![ESP IDF](https://img.shields.io/static/v1?label=ESP+IDF&message=v6.21.4&logo=cpu&logoColor=white&color=blue)](https://components.espressif.com/components/bblanchon/arduinojson)
1414
[![GitHub stars](https://img.shields.io/github/stars/bblanchon/ArduinoJson?style=flat&logo=github&color=orange)](https://github.com/bblanchon/ArduinoJson/stargazers)
1515
[![GitHub Sponsors](https://img.shields.io/github/sponsors/bblanchon?logo=github&color=orange)](https://github.com/sponsors/bblanchon)
1616

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 6.21.3.{build}
1+
version: 6.21.4.{build}
22
environment:
33
matrix:
44
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "6.21.3"
1+
version: "6.21.4"
22
description: >-
33
A simple and efficient JSON library for embedded C++.
44
ArduinoJson supports ✔ serialization, ✔ deserialization, ✔ MessagePack, ✔ fixed allocation, ✔ zero-copy, ✔ streams, ✔ filtering, and more.

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/bblanchon/ArduinoJson.git"
99
},
10-
"version": "6.21.3",
10+
"version": "6.21.4",
1111
"authors": {
1212
"name": "Benoit Blanchon",
1313
"url": "https://blog.benoitblanchon.fr"

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoJson
2-
version=6.21.3
2+
version=6.21.4
33
author=Benoit Blanchon <blog.benoitblanchon.fr>
44
maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
55
sentence=A simple and efficient JSON library for embedded C++.

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/src/ArduinoJson/Strings/Adapters/RamString.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include <string.h> // strcmp
99

1010
#include <ArduinoJson/Polyfills/assert.hpp>
11+
#include <ArduinoJson/Polyfills/attributes.hpp>
1112
#include <ArduinoJson/Strings/StoragePolicy.hpp>
1213
#include <ArduinoJson/Strings/StringAdapter.hpp>
1314

@@ -27,7 +28,7 @@ class ZeroTerminatedRamString {
2728
return !str_;
2829
}
2930

30-
size_t size() const {
31+
FORCE_INLINE size_t size() const {
3132
return str_ ? ::strlen(str_) : 0;
3233
}
3334

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/src/ArduinoJson/Variant/ConverterImpl.hpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
#include <ArduinoJson/Variant/JsonVariantConst.hpp>
99
#include <ArduinoJson/Variant/VariantFunctions.hpp>
1010

11+
#if ARDUINOJSON_ENABLE_STD_STRING
12+
# include <string>
13+
#endif
14+
15+
#if ARDUINOJSON_ENABLE_STRING_VIEW
16+
# include <string_view>
17+
#endif
18+
1119
ARDUINOJSON_BEGIN_PUBLIC_NAMESPACE
1220

1321
template <typename T, typename Enable>

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/src/ArduinoJson/Variant/VariantRefBase.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ class VariantRefBase : public VariantTag {
6161
return Converter<T>::fromJson(getVariant());
6262
}
6363

64-
template <typename T>
64+
template <typename T,
65+
typename = typename enable_if<!is_same<T, TDerived>::value>::type>
6566
FORCE_INLINE operator T() const {
6667
return as<T>();
6768
}

esp32_board/nn_runner/.pio/libdeps/esp32dev/ArduinoJson/src/ArduinoJson/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#pragma once
66

7-
#define ARDUINOJSON_VERSION "6.21.3"
7+
#define ARDUINOJSON_VERSION "6.21.4"
88
#define ARDUINOJSON_VERSION_MAJOR 6
99
#define ARDUINOJSON_VERSION_MINOR 21
10-
#define ARDUINOJSON_VERSION_REVISION 3
11-
#define ARDUINOJSON_VERSION_MACRO V6213
10+
#define ARDUINOJSON_VERSION_REVISION 4
11+
#define ARDUINOJSON_VERSION_MACRO V6214
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"type": "library", "name": "UUID", "version": "0.1.5", "spec": {"owner": "robtillaart", "id": 14115, "name": "UUID", "requirements": null, "uri": null}}
1+
{"type": "library", "name": "UUID", "version": "0.1.6", "spec": {"owner": "robtillaart", "id": 14115, "name": "UUID", "requirements": null, "uri": null}}

esp32_board/nn_runner/.pio/libdeps/esp32dev/UUID/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

88

9+
## [0.1.6] - 2023-11-23
10+
- update readme.md
11+
12+
913
## [0.1.5] - 2022-11-26
1014
- update GitHub actions
1115
- update license 2023
@@ -14,7 +18,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1418
- move code to .cpp
1519
- minor edits
1620

17-
1821
## [0.1.4] - 2022-11-26
1922
- Add RP2040 support to build-CI.
2023
- Add CHANGELOG.md

esp32_board/nn_runner/.pio/libdeps/esp32dev/UUID/README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
[![Arduino CI](https://github.com/RobTillaart/UUID/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
33
[![Arduino-lint](https://github.com/RobTillaart/UUID/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/UUID/actions/workflows/arduino-lint.yml)
44
[![JSON check](https://github.com/RobTillaart/UUID/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/UUID/actions/workflows/jsoncheck.yml)
5+
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/UUID.svg)](https://github.com/RobTillaart/UUID/issues)
6+
57
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/UUID/blob/master/LICENSE)
68
[![GitHub release](https://img.shields.io/github/release/RobTillaart/UUID.svg?maxAge=3600)](https://github.com/RobTillaart/UUID/releases)
9+
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/UUID.svg)](https://registry.platformio.org/libraries/robtillaart/UUID)
710

811

912
# UUID
@@ -148,14 +151,12 @@ Other tasks need to be done too (listening, transfer etc.).
148151

149152
## Future
150153

151-
152154
#### Must
153155

154156
- improve documentation
155157
- background
156158
- test other platforms
157159

158-
159160
#### Should
160161

161162
- optimize
@@ -165,7 +166,6 @@ Other tasks need to be done too (listening, transfer etc.).
165166
(not shocking, impact ?)
166167
- smaller / faster random generator?
167168

168-
169169
#### Could
170170

171171
- investigate entropy harvesting
@@ -187,7 +187,6 @@ Other tasks need to be done too (listening, transfer etc.).
187187
- RTC for entropy
188188
- EEPROM to store last seeds? (n)
189189

190-
191190
### Won't
192191

193192
- support for { and }
@@ -197,3 +196,11 @@ Other tasks need to be done too (listening, transfer etc.).
197196
- **next()** add 1 to UUID to generate a continuous sequence ?
198197

199198

199+
## Support
200+
201+
If you appreciate my libraries, you can support the development and maintenance.
202+
Improve the quality of the libraries by providing issues and Pull Requests, or
203+
donate through PayPal or GitHub sponsors.
204+
205+
Thank you,
206+

esp32_board/nn_runner/.pio/libdeps/esp32dev/UUID/UUID.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: UUID.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.1.5
4+
// VERSION: 0.1.6
55
// DATE: 2022-06-14
66
// PURPOSE: Arduino Library for generating UUID's
77
// URL: https://github.com/RobTillaart/UUID
@@ -59,7 +59,7 @@ void UUID::generate()
5959
// note we are processing 2 digits in one loop.
6060
if ((i & 0x1) == 0)
6161
{
62-
if ((4 <= i) && (i <= 10))
62+
if ((4 <= i) && (i <= 10))
6363
{
6464
_buffer[j++] = '-';
6565
}

esp32_board/nn_runner/.pio/libdeps/esp32dev/UUID/UUID.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// FILE: UUID.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.1.5
5+
// VERSION: 0.1.6
66
// DATE: 2022-06-14
77
// PURPOSE: Arduino Library for generating UUID's
88
// URL: https://github.com/RobTillaart/UUID
@@ -15,7 +15,7 @@
1515
#include "Printable.h"
1616

1717

18-
#define UUID_LIB_VERSION (F("0.1.5"))
18+
#define UUID_LIB_VERSION (F("0.1.6"))
1919

2020
// TODO an enum?
2121
const uint8_t UUID_MODE_VARIANT4 = 0;

esp32_board/nn_runner/.pio/libdeps/esp32dev/UUID/library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/UUID.git"
1717
},
18-
"version": "0.1.5",
18+
"version": "0.1.6",
1919
"license": "MIT",
20-
"frameworks": "arduino",
20+
"frameworks": "*",
2121
"platforms": "*",
2222
"headers": "UUID.h"
2323
}

esp32_board/nn_runner/.pio/libdeps/esp32dev/UUID/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=UUID
2-
version=0.1.5
2+
version=0.1.6
33
author=Rob Tillaart <[email protected]>
44
maintainer=Rob Tillaart <[email protected]>
55
sentence=Arduino library for generating UUID's. (experimental).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
bblanchon/ArduinoJson@^6.21.3
21
knolleary/PubSubClient@^2.8
2+
bblanchon/ArduinoJson@^6.21.3
33
robtillaart/UUID@^0.1.5

0 commit comments

Comments
 (0)