Start on a couple of include issues

This commit is contained in:
jacqueline
2022-11-23 17:21:56 +11:00
parent a7df285588
commit 71a4f5166f
3 changed files with 9 additions and 4 deletions
+3
View File
@@ -1,8 +1,11 @@
#pragma once
#include <stdint.h>
#include <cstdint>
#include "cbor.h"
namespace cbor {
static auto parse_stdstring(CborValue* val, std::string* out) -> CborError {
+3 -1
View File
@@ -1,7 +1,9 @@
#pragma once
#include <cstdint>
#include "esp-idf/components/cbor/tinycbor/src/cbor.h"
#include "cbor.h"
namespace cbor {
class Encoder {
+3 -3
View File
@@ -1,4 +1,4 @@
#include "tasks.cpp"
#include "tasks.hpp"
static const UBaseType_t kTaskPriorityLvgl = 4;
static const UBaseType_t kTaskPriorityAudio = 5;
const UBaseType_t kTaskPriorityLvgl = 4;
const UBaseType_t kTaskPriorityAudio = 5;