monitor.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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 "platform_config.h"
  21. #include "accessors.h"
  22. #include "messaging.h"
  23. #include "cJSON.h"
  24. #include "trace.h"
  25. #define MONITOR_TIMER (10*1000)
  26. #define SCRATCH_SIZE 256
  27. static const char *TAG = "monitor";
  28. static TimerHandle_t monitor_timer;
  29. static monitor_gpio_t jack = { CONFIG_JACK_GPIO, 0 };
  30. static monitor_gpio_t spkfault = { CONFIG_SPKFAULT_GPIO, 0 };
  31. void (*jack_handler_svc)(bool inserted);
  32. bool jack_inserted_svc(void);
  33. void (*spkfault_handler_svc)(bool inserted);
  34. bool spkfault_svc(void);
  35. /****************************************************************************************
  36. *
  37. */
  38. static void task_stats( cJSON* top ) {
  39. #ifdef CONFIG_FREERTOS_USE_TRACE_FACILITY
  40. #pragma message("Compiled with trace facility")
  41. static struct {
  42. TaskStatus_t *tasks;
  43. uint32_t total, n;
  44. } current, previous;
  45. cJSON * tlist=cJSON_CreateArray();
  46. current.n = uxTaskGetNumberOfTasks();
  47. current.tasks = malloc( current.n * sizeof( TaskStatus_t ) );
  48. current.n = uxTaskGetSystemState( current.tasks, current.n, &current.total );
  49. cJSON_AddNumberToObject(top,"ntasks",current.n);
  50. static EXT_RAM_ATTR char scratch[SCRATCH_SIZE];
  51. *scratch = '\0';
  52. #ifdef CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS
  53. #pragma message("Compiled with runtime stats")
  54. uint32_t elapsed = current.total - previous.total;
  55. for(int i = 0, n = 0; i < current.n; i++ ) {
  56. for (int j = 0; j < previous.n; j++) {
  57. if (current.tasks[i].xTaskNumber == previous.tasks[j].xTaskNumber) {
  58. n += snprintf(scratch + n, SCRATCH_SIZE - n, "%16s (%u) %2u%% s:%5u", current.tasks[i].pcTaskName,
  59. current.tasks[i].eCurrentState,
  60. 100 * (current.tasks[i].ulRunTimeCounter - previous.tasks[j].ulRunTimeCounter) / elapsed,
  61. current.tasks[i].usStackHighWaterMark);
  62. cJSON * t=cJSON_CreateObject();
  63. cJSON_AddNumberToObject(t,"cpu",100 * (current.tasks[i].ulRunTimeCounter - previous.tasks[j].ulRunTimeCounter) / elapsed);
  64. cJSON_AddNumberToObject(t,"minstk",current.tasks[i].usStackHighWaterMark);
  65. cJSON_AddNumberToObject(t,"bprio",current.tasks[i].uxBasePriority);
  66. cJSON_AddNumberToObject(t,"cprio",current.tasks[i].uxCurrentPriority);
  67. cJSON_AddStringToObject(t,"nme",current.tasks[i].pcTaskName);
  68. cJSON_AddNumberToObject(t,"st",current.tasks[i].eCurrentState);
  69. cJSON_AddNumberToObject(t,"num",current.tasks[i].xTaskNumber);
  70. cJSON_AddItemToArray(tlist,t);
  71. if (i % 3 == 2 || i == current.n - 1) {
  72. ESP_LOGI(TAG, "%s", scratch);
  73. n = 0;
  74. }
  75. break;
  76. }
  77. }
  78. }
  79. #else
  80. #pragma message("Compiled WITHOUT runtime stats")
  81. for (int i = 0, n = 0; i < current.n; i ++) {
  82. n += sprintf(scratch + n, "%16s s:%5u\t", current.tasks[i].pcTaskName, current.tasks[i].usStackHighWaterMark);
  83. cJSON * t=cJSON_CreateObject();
  84. cJSON_AddNumberToObject(t,"minstk",current.tasks[i].usStackHighWaterMark);
  85. cJSON_AddNumberToObject(t,"bprio",current.tasks[i].uxBasePriority);
  86. cJSON_AddNumberToObject(t,"cprio",current.tasks[i].uxCurrentPriority);
  87. cJSON_AddStringToObject(t,"nme",current.tasks[i].pcTaskName);
  88. cJSON_AddNumberToObject(t,"st",current.tasks[i].eCurrentState);
  89. cJSON_AddNumberToObject(t,"num",current.tasks[i].xTaskNumber);
  90. cJSON_AddItemToArray(tlist,t);
  91. if (i % 3 == 2 || i == current.n - 1) {
  92. ESP_LOGI(TAG, "%s", scratch);
  93. n = 0;
  94. }
  95. }
  96. #endif
  97. cJSON_AddItemToObject(top,"tasks",tlist);
  98. if (previous.tasks) free(previous.tasks);
  99. previous = current;
  100. #else
  101. #pragma message("Compiled WITHOUT trace facility")
  102. #endif
  103. }
  104. /****************************************************************************************
  105. *
  106. */
  107. static void monitor_callback(TimerHandle_t xTimer) {
  108. cJSON * top=cJSON_CreateObject();
  109. cJSON_AddNumberToObject(top,"free_iram",heap_caps_get_free_size(MALLOC_CAP_INTERNAL));
  110. cJSON_AddNumberToObject(top,"min_free_iram",heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL));
  111. cJSON_AddNumberToObject(top,"free_spiram",heap_caps_get_free_size(MALLOC_CAP_SPIRAM));
  112. cJSON_AddNumberToObject(top,"min_free_spiram",heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  113. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  114. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  115. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  116. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  117. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  118. task_stats(top);
  119. char * top_a= cJSON_PrintUnformatted(top);
  120. if(top_a){
  121. messaging_post_message(MESSAGING_INFO, MESSAGING_CLASS_STATS,top_a);
  122. FREE_AND_NULL(top_a);
  123. }
  124. cJSON_Delete(top);
  125. }
  126. /****************************************************************************************
  127. *
  128. */
  129. static void jack_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  130. ESP_LOGI(TAG, "Jack %s", event == BUTTON_PRESSED ? "inserted" : "removed");
  131. if (jack_handler_svc) (*jack_handler_svc)(event == BUTTON_PRESSED);
  132. }
  133. /****************************************************************************************
  134. *
  135. */
  136. bool jack_inserted_svc (void) {
  137. if (jack.gpio != -1) return button_is_pressed(jack.gpio, NULL);
  138. else return true;
  139. }
  140. /****************************************************************************************
  141. *
  142. */
  143. static void spkfault_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  144. ESP_LOGD(TAG, "Speaker status %s", event == BUTTON_PRESSED ? "faulty" : "normal");
  145. if (event == BUTTON_PRESSED) led_on(LED_RED);
  146. else led_off(LED_RED);
  147. if (spkfault_handler_svc) (*spkfault_handler_svc)(event == BUTTON_PRESSED);
  148. }
  149. /****************************************************************************************
  150. *
  151. */
  152. bool spkfault_svc (void) {
  153. return button_is_pressed(spkfault.gpio, NULL);
  154. }
  155. /****************************************************************************************
  156. *
  157. */
  158. #ifndef CONFIG_JACK_LOCKED
  159. static void set_jack_gpio(int gpio, char *value) {
  160. if (strcasestr(value, "jack")) {
  161. char *p;
  162. jack.gpio = gpio;
  163. if ((p = strchr(value, ':')) != NULL) jack.active = atoi(p + 1);
  164. }
  165. else {
  166. jack.gpio = -1;
  167. }
  168. }
  169. #endif
  170. /****************************************************************************************
  171. *
  172. */
  173. #ifndef CONFIG_SPKFAULT_LOCKED
  174. static void set_spkfault_gpio(int gpio, char *value) {
  175. if (strcasestr(value, "spkfault")) {
  176. char *p;
  177. spkfault.gpio = gpio;
  178. if ((p = strchr(value, ':')) != NULL) spkfault.active = atoi(p + 1);
  179. }
  180. else {
  181. spkfault.gpio = -1;
  182. }
  183. }
  184. #endif
  185. /****************************************************************************************
  186. *
  187. */
  188. void monitor_svc_init(void) {
  189. ESP_LOGI(TAG, "Initializing monitoring");
  190. #ifdef CONFIG_JACK_GPIO_LEVEL
  191. jack.active = CONFIG_JACK_GPIO_LEVEL;
  192. #endif
  193. #ifndef CONFIG_JACK_LOCKED
  194. parse_set_GPIO(set_jack_gpio);
  195. #endif
  196. // re-use button management for jack handler, it's a GPIO after all
  197. if (jack.gpio != -1) {
  198. ESP_LOGI(TAG,"Adding jack (%s) detection GPIO %d", jack.active ? "high" : "low", jack.gpio);
  199. button_create(NULL, jack.gpio, jack.active ? BUTTON_HIGH : BUTTON_LOW, false, 250, jack_handler_default, 0, -1);
  200. }
  201. #ifdef CONFIG_SPKFAULT_GPIO_LEVEL
  202. spkfault.active = CONFIG_SPKFAULT_GPIO_LEVEL;
  203. #endif
  204. #ifndef CONFIG_SPKFAULT_LOCKED
  205. parse_set_GPIO(set_spkfault_gpio);
  206. #endif
  207. // re-use button management for speaker fault handler, it's a GPIO after all
  208. if (spkfault.gpio != -1) {
  209. ESP_LOGI(TAG,"Adding speaker fault (%s) detection GPIO %d", spkfault.active ? "high" : "low", spkfault.gpio);
  210. button_create(NULL, spkfault.gpio, spkfault.active ? BUTTON_HIGH : BUTTON_LOW, false, 0, spkfault_handler_default, 0, -1);
  211. }
  212. // do we want stats
  213. char *p = config_alloc_get_default(NVS_TYPE_STR, "stats", "n", 0);
  214. if (p && (*p == '1' || *p == 'Y' || *p == 'y')) {
  215. monitor_timer = xTimerCreate("monitor", MONITOR_TIMER / portTICK_RATE_MS, pdTRUE, NULL, monitor_callback);
  216. xTimerStart(monitor_timer, portMAX_DELAY);
  217. }
  218. FREE_AND_NULL(p);
  219. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  220. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  221. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  222. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  223. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  224. }
  225. /****************************************************************************************
  226. *
  227. */
  228. monitor_gpio_t * get_spkfault_gpio(){
  229. return &spkfault ;
  230. }
  231. /****************************************************************************************
  232. *
  233. */
  234. monitor_gpio_t * get_jack_insertion_gpio(){
  235. return &jack;
  236. }