committed by
GitHub
parent
6d80144e12
commit
85e26636a3
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#ifdef ESP_TARGET
|
||||
|
||||
namespace tt {
|
||||
|
||||
void esp_init();
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // ESP_TARGET
|
||||
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#ifdef ESP_TARGET
|
||||
|
||||
#include "esp_err.h"
|
||||
|
||||
namespace tt {
|
||||
|
||||
esp_err_t esp_partitions_init();
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // ESP_TARGET
|
||||
@@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#include "Hal/Configuration.h"
|
||||
|
||||
namespace tt::hal {
|
||||
|
||||
void init(const Configuration* configuration);
|
||||
|
||||
} // namespace
|
||||
Reference in New Issue
Block a user