embedded.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #include <setjmp.h>
  12. #include "squeezelite.h"
  13. #include "pthread.h"
  14. #include "esp_pthread.h"
  15. #include "esp_system.h"
  16. #include "esp_timer.h"
  17. #include "esp_wifi.h"
  18. #include "monitor.h"
  19. #include "platform_config.h"
  20. #include "messaging.h"
  21. mutex_type slimp_mutex;
  22. static jmp_buf jumpbuf;
  23. void get_mac(u8_t mac[]) {
  24. esp_read_mac(mac, ESP_MAC_WIFI_STA);
  25. }
  26. _sig_func_ptr signal(int sig, _sig_func_ptr func) {
  27. return NULL;
  28. }
  29. void em_logprint(const char *fmt, ...) {
  30. va_list args;
  31. va_start(args, fmt);
  32. vfprintf(stderr, fmt, args);
  33. vmessaging_post_message(MESSAGING_ERROR, MESSAGING_CLASS_SYSTEM, fmt, args);
  34. va_end(args);
  35. fflush(stderr);
  36. }
  37. void *audio_calloc(size_t nmemb, size_t size) {
  38. return calloc(nmemb, size);
  39. }
  40. int pthread_create_name(pthread_t *thread, _CONST pthread_attr_t *attr,
  41. void *(*start_routine)( void * ), void *arg, char *name) {
  42. esp_pthread_cfg_t cfg = esp_pthread_get_default_config();
  43. cfg.thread_name = name;
  44. cfg.inherit_cfg = true;
  45. esp_pthread_set_cfg(&cfg);
  46. return pthread_create(thread, attr, start_routine, arg);
  47. }
  48. uint32_t _gettime_ms_(void) {
  49. return (uint32_t) (esp_timer_get_time() / 1000);
  50. }
  51. extern void sb_controls_init(void);
  52. extern bool sb_displayer_init(void);
  53. u8_t custom_player_id = 12;
  54. int embedded_init(void) {
  55. mutex_create(slimp_mutex);
  56. sb_controls_init();
  57. custom_player_id = sb_displayer_init() ? 100 : 101;
  58. return setjmp(jumpbuf);
  59. }
  60. void embedded_exit(int code) {
  61. longjmp(jumpbuf, code + 1);
  62. }
  63. u16_t get_RSSI(void) {
  64. wifi_ap_record_t wifidata;
  65. esp_wifi_sta_get_ap_info(&wifidata);
  66. // we'll assume dBm, -30 to -100
  67. if (wifidata.primary != 0) return 100 + wifidata.rssi + 30;
  68. else return 0xffff;
  69. }
  70. u16_t get_plugged(void) {
  71. return jack_inserted_svc() ? PLUG_HEADPHONE : 0;
  72. }
  73. u16_t get_battery(void) {
  74. return (u16_t) (battery_value_svc() * 128) & 0x0fff;
  75. }
  76. void set_name(char *name) {
  77. char *cmd = config_alloc_get(NVS_TYPE_STR, "autoexec1");
  78. char *p, *q;
  79. if (!cmd) return;
  80. if ((p = strstr(cmd, " -n")) != NULL) {
  81. q = p + 3;
  82. // in case some smart dude has a " -" in player's name
  83. while ((q = strstr(q, " -")) != NULL) {
  84. if (!strchr(q, '"') || !strchr(q+1, '"')) break;
  85. q++;
  86. }
  87. if (q) memmove(p, q, strlen(q) + 1);
  88. else *p = '\0';
  89. }
  90. asprintf(&q, "%s -n \"%s\"", cmd, name);
  91. config_set_value(NVS_TYPE_STR, "autoexec1", q);
  92. free(q);
  93. free(cmd);
  94. }