#include <soc/soc.h>
#include <soc/gpio_reg.h>
#include <unistd.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
void app_main(void)
{
REG_WRITE(GPIO_ENABLE_REG, 0x45);
while (1)
{
REG_WRITE(GPIO_OUT_W1TS_REG, 0x45);
vTaskDelay(300 / portTICK_PERIOD_MS);
REG_WRITE(GPIO_OUT_W1TC_REG, 0x45);
vTaskDelay(300 / portTICK_PERIOD_MS);
}
}