board.h 446 B

12345678910111213141516171819
  1. /*
  2. * board.h
  3. *
  4. * Board definitions
  5. *
  6. * Written & released by Keir Fraser <keir.xen@gmail.com>
  7. *
  8. * This is free and unencumbered software released into the public domain.
  9. * See the file COPYING for more details, or visit <http://unlicense.org>.
  10. */
  11. struct board_config {
  12. uint8_t hse_mhz;
  13. bool_t hse_byp;
  14. bool_t hs_usb;
  15. bool_t flippy;
  16. const struct pin_mapping *user_pins;
  17. const struct pin_mapping *msel_pins;
  18. };