monitor.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <unistd.h>
  10. #include <string.h>
  11. #include "freertos/FreeRTOS.h"
  12. #include "freertos/timers.h"
  13. #include "esp_system.h"
  14. #include "esp_log.h"
  15. #include "monitor.h"
  16. #include "driver/gpio.h"
  17. #include "buttons.h"
  18. #include "led.h"
  19. #include "globdefs.h"
  20. #include "config.h"
  21. #include "accessors.h"
  22. #define MONITOR_TIMER (10*1000)
  23. static const char *TAG = "monitor";
  24. static TimerHandle_t monitor_timer;
  25. static int jack_gpio = -1;
  26. void (*jack_handler_svc)(bool inserted);
  27. bool jack_inserted_svc(void);
  28. void (*spkfault_handler_svc)(bool inserted);
  29. bool spkfault_svc(void);
  30. /****************************************************************************************
  31. *
  32. */
  33. static void monitor_callback(TimerHandle_t xTimer) {
  34. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  35. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  36. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  37. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  38. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  39. }
  40. /****************************************************************************************
  41. *
  42. */
  43. static void jack_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  44. ESP_LOGD(TAG, "Jack %s", event == BUTTON_PRESSED ? "inserted" : "removed");
  45. if (jack_handler_svc) (*jack_handler_svc)(event == BUTTON_PRESSED);
  46. }
  47. /****************************************************************************************
  48. *
  49. */
  50. bool jack_inserted_svc (void) {
  51. if (jack_gpio != -1) return button_is_pressed(jack_gpio, NULL);
  52. else return false;
  53. }
  54. /****************************************************************************************
  55. *
  56. */
  57. #ifdef SPKFAULT_GPIO
  58. static void spkfault_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  59. ESP_LOGD(TAG, "Speaker status %s", event == BUTTON_PRESSED ? "faulty" : "normal");
  60. if (event == BUTTON_PRESSED) led_on(LED_RED);
  61. else led_off(LED_RED);
  62. if (spkfault_handler_svc) (*spkfault_handler_svc)(event == BUTTON_PRESSED);
  63. }
  64. #endif
  65. /****************************************************************************************
  66. *
  67. */
  68. bool spkfault_svc (void) {
  69. #ifdef SPKFAULT_GPIO
  70. return !gpio_get_level(SPKFAULT_GPIO);
  71. #else
  72. return false;
  73. #endif
  74. }
  75. /****************************************************************************************
  76. *
  77. */
  78. void set_jack_gpio(int gpio, char *value) {
  79. bool low = false;
  80. if (!strcasecmp(value, "jack_l")) {
  81. jack_gpio = gpio;
  82. low = true;
  83. } else if (!strcasecmp(value, "jack_h")) {
  84. jack_gpio = gpio;
  85. }
  86. if (jack_gpio != -1) {
  87. gpio_pad_select_gpio(jack_gpio);
  88. gpio_set_direction(jack_gpio, GPIO_MODE_INPUT);
  89. gpio_set_pull_mode(jack_gpio, low ? GPIO_PULLUP_ONLY : GPIO_PULLDOWN_ONLY);
  90. ESP_LOGI(TAG,"Adding jack (%s) detection GPIO %d", low ? "low" : "high", gpio);
  91. // re-use button management for jack handler, it's a GPIO after all
  92. button_create(NULL, jack_gpio, low ? BUTTON_LOW : BUTTON_HIGH, false, 250, jack_handler_default, 0, -1);
  93. }
  94. }
  95. /****************************************************************************************
  96. *
  97. */
  98. void monitor_svc_init(void) {
  99. ESP_LOGI(TAG, "Initializing monitoring");
  100. #ifdef CONFIG_JACK_GPIO
  101. jack_gpio = CONFIG_JACK_GPIO;
  102. #if CONFIG_JACK_GPIO_LEVEL == 1
  103. set_jack_gpio(CONFIG_JACK_GPIO, "jack_h");
  104. #else
  105. set_jack_gpio(CONFIG_JACK_GPIO, "jack_l");
  106. #endif
  107. #endif
  108. #ifndef CONFIG_JACK_LOCKED
  109. parse_set_GPIO(set_jack_gpio);
  110. #endif
  111. #ifdef SPKFAULT_GPIO
  112. gpio_pad_select_gpio(SPKFAULT_GPIO);
  113. gpio_set_direction(SPKFAULT_GPIO, GPIO_MODE_INPUT);
  114. gpio_set_pull_mode(SPKFAULT_GPIO, GPIO_PULLUP_ONLY);
  115. // re-use button management for speaker fault handler, it's a GPIO after all
  116. button_create(NULL, SPKFAULT_GPIO, BUTTON_LOW, true, 0, spkfault_handler_default, 0, -1);
  117. #endif
  118. // do we want stats
  119. char *p = config_alloc_get_default(NVS_TYPE_STR, "stats", "n", 0);
  120. if (p && (*p == '1' || *p == 'Y' || *p == 'y')) {
  121. monitor_timer = xTimerCreate("monitor", MONITOR_TIMER / portTICK_RATE_MS, pdTRUE, NULL, monitor_callback);
  122. xTimerStart(monitor_timer, portMAX_DELAY);
  123. }
  124. free(p);
  125. }