Skip to content

Commit 665d88b

Browse files
committed
Merge branch 'bsp_integration4' into 'main'
change demo badge example to use bsp See merge request app-frameworks/esp-matter!722
2 parents c71d6df + 33f8628 commit 665d88b

File tree

4 files changed

+22
-24
lines changed

4 files changed

+22
-24
lines changed

examples/demo/badge/CMakeLists.txt

+3-9
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,9 @@ if(NOT DEFINED ENV{ESP_MATTER_PATH})
66
message(FATAL_ERROR "Please set ESP_MATTER_PATH to the path of esp-matter repo")
77
endif(NOT DEFINED ENV{ESP_MATTER_PATH})
88

9-
if(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH})
10-
if("${IDF_TARGET}" STREQUAL "esp32" OR "${IDF_TARGET}" STREQUAL "")
11-
set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32_devkit_c)
12-
else()
13-
message(FATAL_ERROR "Espressif Badge is only supported on ESP32 target")
14-
endif()
15-
endif(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH})
9+
if(NOT "${IDF_TARGET}" STREQUAL "esp32" AND NOT "${IDF_TARGET}" STREQUAL "")
10+
message(FATAL_ERROR "Espressif Badge is only supported on ESP32 target")
11+
endif()
1612

1713
set(PROJECT_VER "1.0")
1814
set(PROJECT_VER_NUMBER 1)
@@ -22,13 +18,11 @@ set(MATTER_SDK_PATH ${ESP_MATTER_PATH}/connectedhomeip/connectedhomeip)
2218

2319
# This should be done before using the IDF_TARGET variable.
2420
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
25-
include($ENV{ESP_MATTER_DEVICE_PATH}/esp_matter_device.cmake)
2621

2722
set(EXTRA_COMPONENT_DIRS
2823
"${ESP_MATTER_PATH}/examples/common"
2924
"${MATTER_SDK_PATH}/config/esp32/components"
3025
"${ESP_MATTER_PATH}/components"
31-
"${ESP_MATTER_PATH}/device_hal/device"
3226
${extra_components_dirs_append})
3327

3428
project(demo-badge)

examples/demo/badge/main/app_driver.cpp

+9-15
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010
#include <stdlib.h>
1111
#include <string.h>
1212

13-
#include <device.h>
1413
#include <esp_matter.h>
15-
#include <led_driver.h>
14+
#include "bsp/esp-bsp.h"
1615

1716
#include <app_priv.h>
1817

@@ -38,7 +37,7 @@ static esp_err_t set_default_epaper(esp_matter_attr_val_t *val)
3837
}
3938

4039
/* Do any conversions/remapping for the actual value here */
41-
static esp_err_t app_driver_light_set_power(led_driver_handle_t handle, esp_matter_attr_val_t *val)
40+
static esp_err_t app_driver_light_set_power(led_indicator_handle_t handle, esp_matter_attr_val_t *val)
4241
{
4342
return set_default_epaper(val);
4443
}
@@ -133,7 +132,7 @@ esp_err_t app_driver_light_set_defaults(uint16_t endpoint_id)
133132
{
134133
esp_err_t err = ESP_OK;
135134
void *priv_data = endpoint::get_priv_data(endpoint_id);
136-
led_driver_handle_t handle = (led_driver_handle_t)priv_data;
135+
led_indicator_handle_t handle = (led_indicator_handle_t)priv_data;
137136
node_t *node = node::get();
138137
endpoint_t *endpoint = endpoint::get(node, endpoint_id);
139138
cluster_t *cluster = NULL;
@@ -193,15 +192,10 @@ static void factory_reset_badge(void *arg, void *data)
193192
app_driver_handle_t app_driver_button_init()
194193
{
195194
/* Initialize button */
196-
button_config_t config = {
197-
.type = BUTTON_TYPE_GPIO,
198-
.gpio_button_config = {
199-
.gpio_num = 39,
200-
.active_level = 0,
201-
}
202-
};
203-
button_handle_t handle = iot_button_create(&config);
204-
iot_button_register_cb(handle, BUTTON_PRESS_DOWN, app_driver_button_toggle_cb, NULL);
205-
iot_button_register_cb(handle, BUTTON_LONG_PRESS_START, factory_reset_badge, NULL);
206-
return (app_driver_handle_t)handle;
195+
button_handle_t btns[BSP_BUTTON_NUM];
196+
ESP_ERROR_CHECK(bsp_iot_button_create(btns, NULL, BSP_BUTTON_NUM));
197+
ESP_ERROR_CHECK(iot_button_register_cb(btns[0], BUTTON_PRESS_DOWN, app_driver_button_toggle_cb, NULL));
198+
ESP_ERROR_CHECK(iot_button_register_cb(btns[0], BUTTON_LONG_PRESS_START, factory_reset_badge, NULL));
199+
200+
return (app_driver_handle_t)btns[0];
207201
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dependencies:
2+
espressif/esp_bsp_generic:
3+
version: "^1.1.0"

examples/demo/badge/sdkconfig.defaults

+7
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,10 @@ CONFIG_SPI_MASTER_ISR_IN_IRAM=n
5353
CONFIG_SPI_SLAVE_ISR_IN_IRAM=n
5454
CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM=n
5555
CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=n
56+
57+
# ESP32-DFR0676 Settings
58+
# Buttons
59+
CONFIG_BSP_BUTTONS_NUM=1
60+
CONFIG_BSP_BUTTON_1_TYPE_GPIO=y
61+
CONFIG_BSP_BUTTON_1_GPIO=39
62+
CONFIG_BSP_BUTTON_1_LEVEL=0

0 commit comments

Comments
 (0)