You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB

  1. /* Copyright 2021 QMK
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 3 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "keyboard.h"
  17. void platform_setup(void);
  18. void protocol_setup(void);
  19. void protocol_init(void);
  20. void protocol_task(void);
  21. /** \brief Main
  22. *
  23. * FIXME: Needs doc
  24. */
  25. int main(void) __attribute__((weak));
  26. int main(void) {
  27. platform_setup();
  28. protocol_setup();
  29. protocol_init();
  30. /* Main loop */
  31. while (true) {
  32. protocol_task();
  33. housekeeping_task();
  34. }
  35. }