Start on a couple of include issues

custom
jacqueline 2 years ago
parent a7df285588
commit 71a4f5166f
  1. 3
      src/cbor/include/cbor_decoder.hpp
  2. 4
      src/cbor/include/cbor_encoder.hpp
  3. 6
      src/tasks/tasks.cpp

@ -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 {

@ -1,7 +1,9 @@
#pragma once
#include <cstdint>
#include "esp-idf/components/cbor/tinycbor/src/cbor.h"
#include "cbor.h"
namespace cbor {
class Encoder {

@ -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;

Loading…
Cancel
Save