FreeRTOS-openocd.c 812 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Since at least FreeRTOS V7.5.3 uxTopUsedPriority is no longer
  3. * present in the kernel, so it has to be supplied by other means for
  4. * OpenOCD's threads awareness.
  5. *
  6. * Add this file to your project, and, if you're using --gc-sections,
  7. * ``--undefined=uxTopUsedPriority'' (or
  8. * ``-Wl,--undefined=uxTopUsedPriority'' when using gcc for final
  9. * linking) to your LDFLAGS; same with all the other symbols you need.
  10. */
  11. #include "FreeRTOS.h"
  12. #include "esp_attr.h"
  13. #include "sdkconfig.h"
  14. #ifdef __GNUC__
  15. #define USED __attribute__( ( used ) )
  16. #else
  17. #define USED
  18. #endif
  19. /*
  20. * This file is no longer needed as AFTER FreeRTOS V10.14.1 OpenOCD is fixed in the kernel.
  21. * #ifdef CONFIG_ESP32_DEBUG_OCDAWARE
  22. * const int USED DRAM_ATTR uxTopUsedPriority = configMAX_PRIORITIES - 1;
  23. * #endif
  24. */