Merge branch 'remove_unused_tags' into 'main'

Remove unused log TAG variables and move sourcing esp-idf/export.sh to getting esp-matter section

See merge request app-frameworks/esp-matter!285
This commit is contained in:
Hrishikesh Dhayagude
2023-02-04 01:52:50 +08:00
8 changed files with 8 additions and 14 deletions
@@ -38,7 +38,6 @@ using chip::Inet::IPAddress;
using chip::Transport::PeerAddress;
using esp_matter::controller::command_data_t;
const static char *TAG = "esp_matter_controller";
namespace esp_matter {
namespace console {
@@ -19,8 +19,6 @@
#define LED_CHANNEL 0 /* LEDC_CHANNEL_0 */
#define BUTTON_GPIO_PIN GPIO_NUM_0
static const char *TAG = "device";
led_driver_config_t led_driver_get_config()
{
led_driver_config_t config = {
@@ -19,7 +19,6 @@
#define LED_CHANNEL 0 /* RMT_CHANNEL_0 */
#define BUTTON_GPIO_PIN GPIO_NUM_9
static const char *TAG = "device";
led_driver_config_t led_driver_get_config()
{
@@ -19,8 +19,6 @@
#define LED_CHANNEL 0 /* RMT_CHANNEL_0 */
#define BUTTON_GPIO_PIN GPIO_NUM_9
static const char *TAG = "device";
led_driver_config_t led_driver_get_config()
{
led_driver_config_t config = {
@@ -19,8 +19,6 @@
#define LED_CHANNEL 0 /* RMT_CHANNEL_0 */
#define BUTTON_GPIO_PIN GPIO_NUM_0
static const char *TAG = "device";
led_driver_config_t led_driver_get_config()
{
led_driver_config_t config = {
-2
View File
@@ -19,8 +19,6 @@
#define LED_CHANNEL 0 /* RMT_CHANNEL_0 */
#define BUTTON_GPIO_PIN GPIO_NUM_9
static const char *TAG = "device";
led_driver_config_t led_driver_get_config()
{
led_driver_config_t config = {
-2
View File
@@ -19,8 +19,6 @@
#define LED_CHANNEL 7 /* LEDC_CHANNEL_7 */
#define BUTTON_GPIO_PIN 39 /* Left button on M5Stack */
static const char *TAG = "device";
led_driver_config_t led_driver_get_config()
{
led_driver_config_t config = {
+8 -2
View File
@@ -54,7 +54,6 @@ For using VSCode for developement, please check `Developing in WSL <https://code
git clone --recursive https://github.com/espressif/esp-idf.git
cd esp-idf; git checkout v4.4.3; git submodule update --init --recursive;
./install.sh
source ./export.sh
cd ..
.. only:: esp32h2
@@ -64,7 +63,6 @@ For using VSCode for developement, please check `Developing in WSL <https://code
git clone --recursive https://github.com/espressif/esp-idf.git
cd esp-idf; git checkout 20949d444f; git submodule update --init --recursive;
./install.sh
source ./export.sh
cd ..
Cloning the esp-matter repository takes a while due to a lot of submodules in the upstream connectedhomeip,
@@ -72,6 +70,10 @@ so if you want to do a shallow clone use the following command:
::
cd esp-idf
source ./export.sh
cd ..
git clone --depth 1 https://github.com/espressif/esp-matter.git
cd esp-matter
git submodule update --init --depth 1
@@ -83,6 +85,10 @@ To clone the esp-matter repository with all the submodules, use the following co
::
cd esp-idf
source ./export.sh
cd ..
git clone --recursive https://github.com/espressif/esp-matter.git
cd esp-matter
./install.sh