| 12345678910111213141516171819202122 |
- /* Partitions Tool Example
- This example code is in the Public Domain (or CC0 licensed, at your option.)
- Unless required by applicable law or agreed to in writing, this
- software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- CONDITIONS OF ANY KIND, either express or implied.
- */
- #include <stdio.h>
- #include <string.h>
- #include <sys/unistd.h>
- #include <sys/stat.h>
- #include "esp_err.h"
- #include "esp_log.h"
- static const char *TAG = "example";
- void app_main(void)
- {
- ESP_LOGI(TAG, "Partitions Tool Example");
- ESP_LOGI(TAG, "Example end");
- }
|