chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:04:25 +08:00
commit 548b49ebc0
20937 changed files with 5455372 additions and 0 deletions
@@ -0,0 +1,2 @@
idf_component_register(SRCS "component2.c"
INCLUDE_DIRS ".")
@@ -0,0 +1,15 @@
/*
* SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdio.h>
#include "esp_log.h"
static const char *TAG = "component2";
void component2_print_hello(void)
{
ESP_LOGI(TAG, "Hello from component2!");
}
@@ -0,0 +1,12 @@
/*
* SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef COMPONENT2_H
#define COMPONENT2_H
void component2_print_hello(void);
#endif // COMPONENT2_H