S&B Volcano vaporizer remote control with Pi Pico W
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * main.c
  3. *
  4. * Copyright (c) 2022 - 2023 Thomas Buck (thomas@xythobuz.de)
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * See <http://www.gnu.org/licenses/>.
  17. */
  18. #include "pico/stdlib.h"
  19. #include "hardware/watchdog.h"
  20. #include "config.h"
  21. #include "util.h"
  22. #include "console.h"
  23. #include "log.h"
  24. #include "usb.h"
  25. #include "fat_disk.h"
  26. #include "buttons.h"
  27. int main(void) {
  28. heartbeat_init();
  29. buttons_init();
  30. cnsl_init();
  31. usb_init();
  32. if (watchdog_caused_reboot()) {
  33. debug("reset by watchdog");
  34. }
  35. debug("fat_disk_init");
  36. fat_disk_init();
  37. // trigger after 500ms
  38. watchdog_enable(500, 1);
  39. debug("init done");
  40. while (1) {
  41. watchdog_update();
  42. heartbeat_run();
  43. buttons_run();
  44. usb_run();
  45. cnsl_run();
  46. }
  47. return 0;
  48. }