You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

52 lines
1.2 KiB

  1. /** @page targetdocs OpenOCD Target APIs
  2. OpenOCD provides its Target APIs to allow developers to provide trace and
  3. debugging support for specific device targets. These primarily consist of
  4. ARM cores, but other types have been supported. New targets should be
  5. developed by following or using these APIs.
  6. The Target Support module contains APIs that cover several functional areas:
  7. - @subpage targetarm
  8. - @subpage targetnotarm
  9. - @subpage targetregister
  10. - @subpage targetimage
  11. - @subpage targettrace
  12. This section needs to be expanded.
  13. */
  14. /** @page targetarm OpenOCD ARM Targets
  15. This section needs to describe OpenOCD's ARM target support.
  16. */
  17. /** @page targetnotarm OpenOCD Non-ARM Targets
  18. This section needs to describe OpenOCD's non-ARM target support.
  19. */
  20. /** @page targetregister OpenOCD Target Register API
  21. This section needs to describe OpenOCD's Target Register API, as
  22. provided by 'src/target/register.h'.
  23. */
  24. /** @page targetimage OpenOCD Target Image API
  25. This section needs to describe OpenOCD's Target Image API, as provided
  26. by 'src/target/image.h'.
  27. */
  28. /** @page targettrace OpenOCD Target Trace API
  29. This section needs to describe OpenOCD's Target Trace API, as provided
  30. by 'src/target/trace.h'.
  31. */