index.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. // Here to organize documentation order
  7. /**
  8. * \defgroup hardware Hardware APIs
  9. * This group of libraries provides a thin and efficient C API / abstractions to access the RP2040 hardware without having to read and write
  10. * hardware registers directly.
  11. * @{
  12. * \defgroup hardware_adc hardware_adc
  13. * \defgroup hardware_base hardware_base
  14. * \defgroup hardware_claim hardware_claim
  15. * \defgroup hardware_clocks hardware_clocks
  16. * \defgroup hardware_divider hardware_divider
  17. * \defgroup hardware_dma hardware_dma
  18. * \defgroup hardware_exception hardware_exception
  19. * \defgroup hardware_flash hardware_flash
  20. * \defgroup hardware_gpio hardware_gpio
  21. * \defgroup hardware_i2c hardware_i2c
  22. * \defgroup hardware_interp hardware_interp
  23. * \defgroup hardware_irq hardware_irq
  24. * \defgroup hardware_pio hardware_pio
  25. * \defgroup hardware_pll hardware_pll
  26. * \defgroup hardware_pwm hardware_pwm
  27. * \defgroup hardware_resets hardware_resets
  28. * \defgroup hardware_rtc hardware_rtc
  29. * \defgroup hardware_spi hardware_spi
  30. * \defgroup hardware_sync hardware_sync
  31. * \defgroup hardware_timer hardware_timer
  32. * \defgroup hardware_uart hardware_uart
  33. * \defgroup hardware_vreg hardware_vreg
  34. * \defgroup hardware_watchdog hardware_watchdog
  35. * \defgroup hardware_xosc hardware_xosc
  36. * @}
  37. *
  38. * \defgroup high_level High Level APIs
  39. * This group of libraries provide higher level functionality that isn't hardware related or provides a richer
  40. * set of functionality above the basic hardware interfaces
  41. * @{
  42. * \defgroup pico_async_context pico_async_context
  43. * \defgroup pico_flash pico_flash
  44. * \defgroup pico_i2c_slave pico_i2c_slave
  45. * \defgroup pico_multicore pico_multicore
  46. * \defgroup pico_rand pico_rand
  47. * \defgroup pico_stdlib pico_stdlib
  48. * \defgroup pico_sync pico_sync
  49. * \defgroup pico_time pico_time
  50. * \defgroup pico_unique_id pico_unique_id
  51. * \defgroup pico_util pico_util
  52. * @}
  53. *
  54. * \defgroup third_party Third-party Libraries
  55. * Third party libraries for implementing high level functionality.
  56. * @{
  57. * \defgroup tinyusb_device tinyusb_device
  58. * \defgroup tinyusb_host tinyusb_host
  59. * @}
  60. *
  61. * \defgroup networking Networking Libraries
  62. * Functions for implementing networking
  63. * @{
  64. * \defgroup pico_btstack pico_btstack
  65. * \defgroup pico_lwip pico_lwip
  66. * \defgroup pico_cyw43_driver pico_cyw43_driver
  67. * \defgroup pico_cyw43_arch pico_cyw43_arch
  68. * @}
  69. *
  70. * \defgroup runtime Runtime Infrastructure
  71. * Libraries that are used to provide efficient implementation of certain
  72. * language level and C library functions, as well as CMake INTERFACE libraries
  73. * abstracting the compilation and link steps in the SDK
  74. * @{
  75. * \defgroup boot_stage2 boot_stage2
  76. * \defgroup pico_base pico_base
  77. * \defgroup pico_binary_info pico_binary_info
  78. * \defgroup pico_bit_ops pico_bit_ops
  79. * \defgroup pico_bootrom pico_bootrom
  80. * \defgroup pico_bootsel_via_double_reset pico_bootsel_via_double_reset
  81. * \defgroup pico_cxx_options pico_cxx_options
  82. * \defgroup pico_divider pico_divider
  83. * \defgroup pico_double pico_double
  84. * \defgroup pico_float pico_float
  85. * \defgroup pico_int64_ops pico_int64_ops
  86. * \defgroup pico_malloc pico_malloc
  87. * \defgroup pico_mem_ops pico_mem_ops
  88. * \defgroup pico_platform pico_platform
  89. * \defgroup pico_printf pico_printf
  90. * \defgroup pico_runtime pico_runtime
  91. * \defgroup pico_stdio pico_stdio
  92. * \defgroup pico_standard_link pico_standard_link
  93. * @}
  94. *
  95. * \defgroup misc External API Headers
  96. * Headers for interfaces that are shared with code outside of the SDK
  97. * @{
  98. * \defgroup boot_picoboot boot_picoboot
  99. * \defgroup boot_uf2 boot_uf2
  100. * @}
  101. */