Skip to content

Commit

Permalink
Update version to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hung-eoh committed Oct 17, 2023
1 parent e0117e9 commit 75d312c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 12 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,28 +77,46 @@ jobs:
- name: "Espressif32"
fqbn: "esp32:esp32:esp32"
platform-name: esp32:esp32
sketch-paths: examples/ESP32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Ethernet
- examples/ESP32/ESP32_Ethernet_SSL
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
- name: "Espressif32-C3"
fqbn: "esp32:esp32:esp32c3"
platform-name: esp32:esp32
sketch-paths: examples/ESP32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
- name: "Espressif32-S2"
fqbn: "esp32:esp32:esp32s2"
platform-name: esp32:esp32
sketch-paths: examples/ESP32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
- name: "Espressif32-S3"
fqbn: "esp32:esp32:esp32s3"
platform-name: esp32:esp32
sketch-paths: examples/ESP32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ERa",
"version": "0.9.2",
"version": "1.0.0",
"description": "E-Ra by EoH. An IoT Market Enabler! It supports WiFi, Ethernet, Zigbee, Modbus, Serial. Works with boards like Arduino, ESP8266, ESP32, STM32, Raspberry Pi...",
"keywords": "ERa, E-Ra, esp8266, esp32, stm32, raspberry-pi, http, mqtt, zigbee, modbus, sensors, control, device, smartphone, mobile, app, web, cloud, communication, protocol, iot, wifi, ethernet, serial",
"authors":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ERa
version=0.9.2
version=1.0.0
author=EoH Ltd
license=MIT
maintainer=EoH Ltd <info@eoh.io>
Expand Down
6 changes: 0 additions & 6 deletions src/Utility/ERaOs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,25 +91,19 @@ namespace ERaOs {
void osThreadDelete(TaskHandle_t thread_id);
uint32_t osThreadGetStackSpace(TaskHandle_t thread_id);
osStatus_t osMessageQueueGet(QueueHandle_t mq_id, void *msg_ptr, uint8_t *msg_prio, uint32_t timeout);
IRAM_ATTR
osStatus_t osMessageQueueGetIRQ(QueueHandle_t mq_id, void *msg_ptr, uint8_t *msg_prio, uint32_t timeout);
osStatus_t osMessageQueuePut(QueueHandle_t mq_id, const void *msg_ptr, uint8_t msg_prio, uint32_t timeout);
IRAM_ATTR
osStatus_t osMessageQueuePutIRQ(QueueHandle_t mq_id, const void *msg_ptr, uint8_t msg_prio, uint32_t timeout);
uint32_t osMessageQueueGetCount(QueueHandle_t mq_id);
IRAM_ATTR
uint32_t osMessageQueueGetCountIRQ(QueueHandle_t mq_id);
uint32_t osMessageQueueGetSpace(QueueHandle_t mq_id);
IRAM_ATTR
uint32_t osMessageQueueGetSpaceIRQ(QueueHandle_t mq_id);
void waitMessageQueueSpace(QueueHandle_t mq_id, uint32_t timeout);
osStatus_t osMessageQueueReset(QueueHandle_t mq_id);
SemaphoreHandle_t osSemaphoreNew();
osStatus_t osSemaphoreRelease(SemaphoreHandle_t semaphore_id);
IRAM_ATTR
osStatus_t osSemaphoreReleaseIRQ(SemaphoreHandle_t semaphore_id);
osStatus_t osSemaphoreAcquire(SemaphoreHandle_t semaphore_id, uint32_t timeout);
IRAM_ATTR
osStatus_t osSemaphoreAcquireIRQ(SemaphoreHandle_t semaphore_id, uint32_t timeout);
uint32_t osEventFlagsSet(EventGroupHandle_t ef_id, uint32_t flags);
uint32_t osEventFlagsClear(EventGroupHandle_t ef_id, uint32_t flags);
Expand Down

0 comments on commit 75d312c

Please sign in to comment.