/* Dummy Application for app1 partition
 * 
 * This code is just a placeholder for the app1 partition.
 * In a real OTA scenario, you might want to put your initial
 * firmware in this partition.
 */
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_log.h"
#include "sdkconfig.h"

static const char *TAG = "app1_dummy";

void app_main(void)
{
    ESP_LOGI(TAG, "App1 is running from the app1 partition!");
    ESP_LOGI(TAG, "This is just a dummy application that should not normally be executed");
    ESP_LOGI(TAG, "The bootloader should have jumped to app2 instead");
    
    // Just loop and do nothing
    while (1) {
        vTaskDelay(1000 / portTICK_PERIOD_MS);
    }
}