2
0

tools.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Tools
  3. *
  4. * Philippe G. 2019, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. */
  10. #pragma once
  11. #include "cJSON.h"
  12. #include "time.h"
  13. #include "freertos/FreeRTOS.h"
  14. #include "freertos/task.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #ifndef QUOTE
  19. #define QUOTE(name) #name
  20. #endif
  21. #ifndef STR
  22. #define STR(macro) QUOTE(macro)
  23. #endif
  24. #ifndef STR_OR_ALT
  25. #define STR_OR_ALT(str,alt) (str?str:alt)
  26. #endif
  27. #ifndef STR_OR_BLANK
  28. #define STR_OR_BLANK(p) p == NULL ? "" : p
  29. #endif
  30. #define ESP_LOG_DEBUG_EVENT(tag,e) ESP_LOGD(tag,"evt: " e)
  31. #ifndef FREE_AND_NULL
  32. #define FREE_AND_NULL(x) if(x) { free(x); x=NULL; }
  33. #endif
  34. #ifndef CASE_TO_STR
  35. #define CASE_TO_STR(x) case x: return STR(x); break;
  36. #endif
  37. #define ENUM_TO_STRING(g) \
  38. case g: \
  39. return STR(g); \
  40. break;
  41. void utf8_decode(char *src);
  42. void url_decode(char *url);
  43. void* malloc_init_external(size_t sz);
  44. void* clone_obj_psram(void * source, size_t source_sz);
  45. char* strdup_psram(const char * source);
  46. const char* str_or_unknown(const char * str);
  47. const char* str_or_null(const char * str);
  48. typedef void (*http_download_cb_t)(uint8_t* data, size_t len, void *context);
  49. void http_download(char *url, size_t max, http_download_cb_t callback, void *context);
  50. /* Use these to dynamically create tasks whose stack is on EXTRAM. Be aware that it
  51. * requires configNUM_THREAD_LOCAL_STORAGE_POINTERS to bet set to 2 at least (index 0
  52. * is used by pthread and this uses index 1, obviously
  53. */
  54. BaseType_t xTaskCreateEXTRAM( TaskFunction_t pvTaskCode,
  55. const char * const pcName,
  56. configSTACK_DEPTH_TYPE usStackDepth,
  57. void *pvParameters,
  58. UBaseType_t uxPriority,
  59. TaskHandle_t *pxCreatedTask);
  60. void vTaskDeleteEXTRAM(TaskHandle_t xTask);
  61. extern const char unknown_string_placeholder[];
  62. time_t millis();
  63. void dump_json_content(const char* prefix, cJSON* json, int level);
  64. #ifdef __cplusplus
  65. }
  66. #endif