monitor.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. #define MONITOR_TIMER (10*1000)
  21. static const char *TAG = "monitor";
  22. static TimerHandle_t monitor_timer;
  23. void (*jack_handler_svc)(bool inserted);
  24. bool jack_inserted_svc(void);
  25. void (*spkfault_handler_svc)(bool inserted);
  26. bool spkfault_svc(void);
  27. /****************************************************************************************
  28. *
  29. */
  30. static void monitor_callback(TimerHandle_t xTimer) {
  31. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  32. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  33. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  34. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  35. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  36. }
  37. /****************************************************************************************
  38. *
  39. */
  40. static void jack_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  41. ESP_LOGD(TAG, "Jack %s", event == BUTTON_PRESSED ? "inserted" : "removed");
  42. if (jack_handler_svc) (*jack_handler_svc)(event == BUTTON_PRESSED);
  43. }
  44. /****************************************************************************************
  45. *
  46. */
  47. bool jack_inserted_svc (void) {
  48. #ifdef JACK_GPIO
  49. return !gpio_get_level(JACK_GPIO);
  50. #else
  51. return false;
  52. #endif
  53. }
  54. /****************************************************************************************
  55. *
  56. */
  57. static void spkfault_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  58. ESP_LOGD(TAG, "Speaker status %s", event == BUTTON_PRESSED ? "faulty" : "normal");
  59. if (event == BUTTON_PRESSED) led_on(LED_RED);
  60. else led_off(LED_RED);
  61. if (spkfault_handler_svc) (*spkfault_handler_svc)(event == BUTTON_PRESSED);
  62. }
  63. /****************************************************************************************
  64. *
  65. */
  66. bool spkfault_svc (void) {
  67. #ifdef SPKFAULT_GPIO
  68. return !gpio_get_level(SPKFAULT_GPIO);
  69. #else
  70. return false;
  71. #endif
  72. }
  73. #include "driver/rtc_io.h"
  74. /****************************************************************************************
  75. *
  76. */
  77. void monitor_svc_init(void) {
  78. ESP_LOGI(TAG, "Initializing monitoring");
  79. #ifdef JACK_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. #endif
  85. #ifdef SPKFAULT_GPIO
  86. gpio_pad_select_gpio(SPKFAULT_GPIO);
  87. gpio_set_direction(SPKFAULT_GPIO, GPIO_MODE_INPUT);
  88. gpio_set_pull_mode(SPKFAULT_GPIO, GPIO_PULLUP_ONLY);
  89. // re-use button management for speaker fault handler, it's a GPIO after all
  90. button_create(NULL, SPKFAULT_GPIO, BUTTON_LOW, true, 0, spkfault_handler_default, 0, -1);
  91. #endif
  92. monitor_timer = xTimerCreate("monitor", MONITOR_TIMER / portTICK_RATE_MS, pdTRUE, NULL, monitor_callback);
  93. xTimerStart(monitor_timer, portMAX_DELAY);
  94. }