|
|
@@ -7,11 +7,19 @@
|
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
|
*/
|
|
|
#include <stdio.h>
|
|
|
+#include "sdkconfig.h"
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
#include "freertos/task.h"
|
|
|
#include "esp_system.h"
|
|
|
#include "esp_spi_flash.h"
|
|
|
|
|
|
+#ifdef CONFIG_IDF_TARGET_ESP32
|
|
|
+#define CHIP_NAME "ESP32"
|
|
|
+#endif
|
|
|
+
|
|
|
+#ifdef CONFIG_IDF_TARGET_ESP32S2BETA
|
|
|
+#define CHIP_NAME "ESP32-S2 Beta"
|
|
|
+#endif
|
|
|
|
|
|
void app_main(void)
|
|
|
{
|
|
|
@@ -20,7 +28,8 @@ void app_main(void)
|
|
|
/* Print chip information */
|
|
|
esp_chip_info_t chip_info;
|
|
|
esp_chip_info(&chip_info);
|
|
|
- printf("This is ESP32 chip with %d CPU cores, WiFi%s%s, ",
|
|
|
+ printf("This is %s chip with %d CPU cores, WiFi%s%s, ",
|
|
|
+ CHIP_NAME,
|
|
|
chip_info.cores,
|
|
|
(chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "",
|
|
|
(chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : "");
|