2020-02-03 10:01:04 +00:00
|
|
|
/* Ethernet iperf example
|
2018-09-20 11:26:14 +00:00
|
|
|
|
|
|
|
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>
|
2020-02-03 10:01:04 +00:00
|
|
|
#include "sdkconfig.h"
|
2018-09-20 11:26:14 +00:00
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_console.h"
|
|
|
|
#include "esp_vfs_fat.h"
|
2020-02-03 10:01:04 +00:00
|
|
|
#include "cmd_system.h"
|
|
|
|
#include "cmd_ethernet.h"
|
2018-09-20 11:26:14 +00:00
|
|
|
|
2019-04-10 08:24:50 +00:00
|
|
|
static const char *TAG = "eth_example";
|
2018-09-20 11:26:14 +00:00
|
|
|
|
2019-04-10 08:24:50 +00:00
|
|
|
#if CONFIG_EXAMPLE_STORE_HISTORY
|
2018-09-20 11:26:14 +00:00
|
|
|
|
|
|
|
#define MOUNT_PATH "/data"
|
|
|
|
#define HISTORY_PATH MOUNT_PATH "/history.txt"
|
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
static void initialize_filesystem(void)
|
2018-09-20 11:26:14 +00:00
|
|
|
{
|
|
|
|
static wl_handle_t wl_handle;
|
|
|
|
const esp_vfs_fat_mount_config_t mount_config = {
|
|
|
|
.max_files = 4,
|
|
|
|
.format_if_mount_failed = true
|
|
|
|
};
|
|
|
|
esp_err_t err = esp_vfs_fat_spiflash_mount(MOUNT_PATH, "storage", &mount_config, &wl_handle);
|
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "Failed to mount FATFS (%s)", esp_err_to_name(err));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-04-10 08:24:50 +00:00
|
|
|
#endif // CONFIG_EXAMPLE_STORE_HISTORY
|
2018-09-20 11:26:14 +00:00
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
void app_main(void)
|
2018-09-20 11:26:14 +00:00
|
|
|
{
|
2020-02-03 10:01:04 +00:00
|
|
|
esp_console_repl_config_t repl_config = ESP_CONSOLE_REPL_CONFIG_DEFAULT();
|
2019-04-10 08:24:50 +00:00
|
|
|
#if CONFIG_EXAMPLE_STORE_HISTORY
|
2018-09-20 11:26:14 +00:00
|
|
|
initialize_filesystem();
|
2020-02-03 10:01:04 +00:00
|
|
|
repl_config.history_save_path = HISTORY_PATH;
|
2018-09-20 11:26:14 +00:00
|
|
|
#endif
|
2020-02-03 10:01:04 +00:00
|
|
|
// initialize console REPL environment
|
|
|
|
ESP_ERROR_CHECK(esp_console_repl_init(&repl_config));
|
2018-09-20 11:26:14 +00:00
|
|
|
|
|
|
|
/* Register commands */
|
|
|
|
register_system();
|
|
|
|
register_ethernet();
|
|
|
|
|
|
|
|
printf("\n =======================================================\n");
|
|
|
|
printf(" | Steps to Test Ethernet Bandwidth |\n");
|
|
|
|
printf(" | |\n");
|
|
|
|
printf(" | 1. Enter 'help', check all supported commands |\n");
|
2019-04-10 08:24:50 +00:00
|
|
|
printf(" | 2. Wait ESP32 to get IP from DHCP |\n");
|
|
|
|
printf(" | 3. Enter 'ethernet info', optional |\n");
|
2018-09-20 11:26:14 +00:00
|
|
|
printf(" | 4. Server: 'iperf -u -s -i 3' |\n");
|
2019-04-10 08:24:50 +00:00
|
|
|
printf(" | 5. Client: 'iperf -u -c SERVER_IP -t 60 -i 3' |\n");
|
2018-09-20 11:26:14 +00:00
|
|
|
printf(" | |\n");
|
|
|
|
printf(" =======================================================\n\n");
|
|
|
|
|
2020-02-03 10:01:04 +00:00
|
|
|
// start console REPL
|
|
|
|
ESP_ERROR_CHECK(esp_console_repl_start());
|
2018-09-20 11:26:14 +00:00
|
|
|
}
|