feat(linux_target): enable hello world example for linux target

This commit is contained in:
Marius Vikhammer
2023-10-24 10:04:09 +08:00
parent 88af378d2e
commit 8c52b0845d
12 changed files with 25 additions and 129 deletions

View File

@@ -0,0 +1,13 @@
/*
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "esp_flash.h"
esp_err_t esp_flash_get_size(esp_flash_t *chip, uint32_t *out_size)
{
(void)chip;
*out_size = UINT32_MAX;
return ESP_OK;
}