Skip to content

Commit 8caae3d

Browse files
committed
Merge branch 'develop'
2 parents a6b22f7 + c24d960 commit 8caae3d

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description: Unified library for handling various M5 unit products (sensors, act
22
url: https://github.com/m5stack/M5UnitUnified
33
issues: https://github.com/m5stack/M5UnitUnified/issues
44
license: MIT
5-
version: "0.5.0"
5+
version: "0.5.1"
66

77
dependencies:
88
idf: ">=5.0"

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"m5stack/M5Utility": ">=0.1.0",
1515
"m5stack/M5HAL": ">=0.1.0"
1616
},
17-
"version": "0.5.0",
17+
"version": "0.5.1",
1818
"frameworks": [
1919
"arduino",
2020
"espidf"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=M5UnitUnified
2-
version=0.5.0
2+
version=0.5.1
33
author=M5Stack
44
maintainer=M5Stack
55
sentence=M5UnitUnified is a library for unified handling of various M5 units products.

src/m5_unit_component/adapter_gpio_v2.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@
1111
#include "adapter_gpio_v2.hpp"
1212
#if defined(M5_UNIT_UNIFIED_USING_RMT_V2)
1313

14+
#include <freertos/FreeRTOS.h>
15+
#include <freertos/task.h>
16+
#include <freertos/queue.h>
17+
#include <freertos/semphr.h>
1418
#include <freertos/ringbuf.h>
1519
#include <esp_private/esp_clk.h>
1620
#include <soc/soc_caps.h> // SOC_RMT_MEM_WORDS_PER_CHANNEL
21+
#include <soc/soc.h> // PRO_CPU_NUM
1722

1823
using namespace m5::unit::gpio;
1924

0 commit comments

Comments
 (0)