full directory structure

This commit is contained in:
philippe44
2019-05-20 12:48:14 -07:00
parent 1fd1d9bf60
commit 978afb363c
25 changed files with 1409 additions and 11 deletions

16
main/esp32.c Normal file
View File

@@ -0,0 +1,16 @@
#include <signal.h>
#include "esp_system.h"
#include "squeezelite.h"
void get_mac(u8_t mac[]) {
esp_read_mac(mac, ESP_MAC_WIFI_STA);
}
_sig_func_ptr signal(int sig, _sig_func_ptr func) {
return NULL;
}
void *audio_calloc(size_t nmemb, size_t size) {
return calloc(nmemb, size);
}