initial commit

This commit is contained in:
philippe44
2019-05-19 00:11:01 -07:00
parent a5b37a13c9
commit 9b5bdd8cb4
17 changed files with 5996 additions and 0 deletions

12
esp32.c Normal file
View File

@@ -0,0 +1,12 @@
#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;
}