ft8xx_common.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (c) 2020 Hubert Miś
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief FT8XX common functions
  9. */
  10. #ifndef ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_COMMON_H_
  11. #define ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_COMMON_H_
  12. #include <stdint.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief FT8xx functions to write and read memory
  18. * @defgroup ft8xx_common FT8xx common functions
  19. * @ingroup ft8xx_interface
  20. * @{
  21. */
  22. /**
  23. * @brief Write 1 byte (8 bits) to FT8xx memory
  24. *
  25. * @param address Memory address to write to
  26. * @param data Byte to write
  27. */
  28. void ft8xx_wr8(uint32_t address, uint8_t data);
  29. /**
  30. * @brief Write 2 bytes (16 bits) to FT8xx memory
  31. *
  32. * @param address Memory address to write to
  33. * @param data Value to write
  34. */
  35. void ft8xx_wr16(uint32_t address, uint16_t data);
  36. /**
  37. * @brief Write 4 bytes (32 bits) to FT8xx memory
  38. *
  39. * @param address Memory address to write to
  40. * @param data Value to write
  41. */
  42. void ft8xx_wr32(uint32_t address, uint32_t data);
  43. /**
  44. * @brief Read 1 byte (8 bits) from FT8xx memory
  45. *
  46. * @param address Memory address to read from
  47. *
  48. * @return Value read from memory
  49. */
  50. uint8_t ft8xx_rd8(uint32_t address);
  51. /**
  52. * @brief Read 2 bytes (16 bits) from FT8xx memory
  53. *
  54. * @param address Memory address to read from
  55. *
  56. * @return Value read from memory
  57. */
  58. uint16_t ft8xx_rd16(uint32_t address);
  59. /**
  60. * @brief Read 4 bytes (32 bits) from FT8xx memory
  61. *
  62. * @param address Memory address to read from
  63. *
  64. * @return Value read from memory
  65. */
  66. uint32_t ft8xx_rd32(uint32_t address);
  67. /**
  68. * @}
  69. */
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. #endif /* ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_COMMON_H_ */