monitor.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. #define MONITOR_TIMER (10*1000)
  22. static const char *TAG = "monitor";
  23. static TimerHandle_t monitor_timer;
  24. void (*jack_handler_svc)(bool inserted);
  25. bool jack_inserted_svc(void);
  26. void (*spkfault_handler_svc)(bool inserted);
  27. bool spkfault_svc(void);
  28. /****************************************************************************************
  29. *
  30. */
  31. static void monitor_callback(TimerHandle_t xTimer) {
  32. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  33. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  34. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  35. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  36. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  37. }
  38. /****************************************************************************************
  39. *
  40. */
  41. static void jack_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  42. ESP_LOGD(TAG, "Jack %s", event == BUTTON_PRESSED ? "inserted" : "removed");
  43. if (jack_handler_svc) (*jack_handler_svc)(event == BUTTON_PRESSED);
  44. }
  45. /****************************************************************************************
  46. *
  47. */
  48. bool jack_inserted_svc (void) {
  49. #ifdef JACK_GPIO
  50. return !gpio_get_level(JACK_GPIO);
  51. #else
  52. return false;
  53. #endif
  54. }
  55. /****************************************************************************************
  56. *
  57. */
  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. /****************************************************************************************
  65. *
  66. */
  67. bool spkfault_svc (void) {
  68. #ifdef SPKFAULT_GPIO
  69. return !gpio_get_level(SPKFAULT_GPIO);
  70. #else
  71. return false;
  72. #endif
  73. }
  74. /****************************************************************************************
  75. *
  76. */
  77. void set_jack_gpio(int gpio, char *value) {
  78. if (!strcasecmp(value, "jack")) {
  79. ESP_LOGI(TAG,"Adding jack detection GPIO %d", gpio);
  80. gpio_pad_select_gpio(JACK_GPIO);
  81. gpio_set_direction(JACK_GPIO, GPIO_MODE_INPUT);
  82. // re-use button management for jack handler, it's a GPIO after all
  83. button_create(NULL, JACK_GPIO, BUTTON_LOW, false, 250, jack_handler_default, 0, -1);
  84. }
  85. }
  86. /****************************************************************************************
  87. *
  88. */
  89. void monitor_svc_init(void) {
  90. ESP_LOGI(TAG, "Initializing monitoring");
  91. #if !defined(JACK_GPIO) || JACK_GPIO == -1
  92. parse_set_GPIO(set_jack_gpio);
  93. #else
  94. set_jack_gpio(JACK_GPIO, "jack");
  95. #endif
  96. #ifdef SPKFAULT_GPIO
  97. gpio_pad_select_gpio(SPKFAULT_GPIO);
  98. gpio_set_direction(SPKFAULT_GPIO, GPIO_MODE_INPUT);
  99. gpio_set_pull_mode(SPKFAULT_GPIO, GPIO_PULLUP_ONLY);
  100. // re-use button management for speaker fault handler, it's a GPIO after all
  101. button_create(NULL, SPKFAULT_GPIO, BUTTON_LOW, true, 0, spkfault_handler_default, 0, -1);
  102. #endif
  103. // do we want stats
  104. char *p = config_alloc_get_default(NVS_TYPE_STR, "stats", "n", 0);
  105. if (p && (*p == '1' || *p == 'Y' || *p == 'y')) {
  106. monitor_timer = xTimerCreate("monitor", MONITOR_TIMER / portTICK_RATE_MS, pdTRUE, NULL, monitor_callback);
  107. xTimerStart(monitor_timer, portMAX_DELAY);
  108. }
  109. free(p);
  110. }