index.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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_flash hardware_flash
  19. * \defgroup hardware_gpio hardware_gpio
  20. * \defgroup hardware_i2c hardware_i2c
  21. * \defgroup hardware_interp hardware_interp
  22. * \defgroup hardware_irq hardware_irq
  23. * \defgroup hardware_pio hardware_pio
  24. * \defgroup hardware_pll hardware_pll
  25. * \defgroup hardware_pwm hardware_pwm
  26. * \defgroup hardware_resets hardware_resets
  27. * \defgroup hardware_rtc hardware_rtc
  28. * \defgroup hardware_spi hardware_spi
  29. * \defgroup hardware_sync hardware_sync
  30. * \defgroup hardware_timer hardware_timer
  31. * \defgroup hardware_uart hardware_uart
  32. * \defgroup hardware_vreg hardware_vreg
  33. * \defgroup hardware_watchdog hardware_watchdog
  34. * \defgroup hardware_xosc hardware_xosc
  35. * @}
  36. *
  37. * \defgroup high_level High Level APIs
  38. * This group of libraries provide higher level functionality that isn't hardware related or provides a richer
  39. * set of functionality above the basic hardware interfaces
  40. * @{
  41. * \defgroup pico_multicore pico_multicore
  42. * \defgroup pico_stdlib pico_stdlib
  43. * \defgroup pico_sync pico_sync
  44. * \defgroup pico_time pico_time
  45. * \defgroup pico_util pico_util
  46. * @}
  47. *
  48. * \defgroup third_party Third-party Libraries
  49. * Third party libraries for implementing high level functionality.
  50. * @{
  51. * \defgroup tinyusb_device tinyusb_device
  52. * \defgroup tinyusb_host tinyusb_host
  53. * @}
  54. *
  55. * \defgroup runtime Runtime Infrastructure
  56. * Libraries that are used to provide efficient implementation of certain
  57. * language level and C library functions, as well as CMake INTERFACE libraries
  58. * abstracting the compilation and link steps in the SDK
  59. * @{
  60. * \defgroup boot_stage2 boot_stage2
  61. * \defgroup pico_base pico_base
  62. * \defgroup pico_bit_ops pico_bit_ops
  63. * \defgroup pico_bootrom pico_bootrom
  64. * \defgroup pico_cxx_options pico_cxx_options
  65. * \defgroup pico_divider pico_divider
  66. * \defgroup pico_double pico_double
  67. * \defgroup pico_float pico_float
  68. * \defgroup pico_int64_ops pico_int64_ops
  69. * \defgroup pico_malloc pico_malloc
  70. * \defgroup pico_mem_ops pico_mem_ops
  71. * \defgroup pico_platform pico_platform
  72. * \defgroup pico_printf pico_printf
  73. * \defgroup pico_runtime pico_runtime
  74. * \defgroup pico_stdio pico_stdio
  75. * \defgroup pico_standard_link pico_standard_link
  76. * @}
  77. *
  78. * \defgroup misc External API Headers
  79. * Headers for interfaces that are shared with code outside of the SDK
  80. * @{
  81. * \defgroup boot_picoboot boot_picoboot
  82. * \defgroup boot_uf2 boot_uf2
  83. * @}
  84. */