board.h 391 B

1234567891011121314151617181920212223
  1. /**
  2. * @file board.h
  3. * @brief Video Game Module-specific functions.
  4. */
  5. #pragma once
  6. /**
  7. * @brief Initialise the module-specific hardware.
  8. */
  9. void board_init(void);
  10. /**
  11. * @brief Disable the module-specific hardware.
  12. */
  13. void board_deinit(void);
  14. /**
  15. * @brief Reset the module.
  16. *
  17. * Resets the Video Game Module through the dedicated
  18. * reset pin (Pin 15)
  19. */
  20. void board_reset(void);