S&B Volcano vaporizer remote control with Pi Pico W
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

config.h 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * config.h
  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. #ifndef __CONFIG_H__
  19. #define __CONFIG_H__
  20. #define APP_VERSION_MAJOR 0
  21. #define APP_VERSION_MINOR 3
  22. #define MENU_PREFER_VOLCANO
  23. //#define MENU_PREFER_CRAFTY
  24. #define VOLCANO_AUTO_CONNECT_TIMEOUT_MS 2000
  25. #define VOLCANO_AUTO_CONNECT_WITHIN_MS 10000
  26. #define COUNTRY_CODE CYW43_COUNTRY_GERMANY
  27. #ifdef NDEBUG
  28. // Release build
  29. #define AUTO_MOUNT_MASS_STORAGE
  30. #define AUTO_LOG_ON_MASS_STORAGE
  31. #endif // NDEBUG
  32. //#define INFLUXDB_HOST "IP_V4_HERE"
  33. //#define INFLUXDB_PORT 8086
  34. //#define INFLUXDB_DATABASE "db_name"
  35. #define WATCHDOG_PERIOD_MS 1000
  36. #define FLASH_LOCK_TIMEOUT_MS 500
  37. // ASCII 0x18 = CAN (cancel)
  38. #define ENTER_BOOTLOADER_MAGIC 0x18
  39. //#define DISABLE_CDC_DTR_CHECK
  40. #define DEBOUNCE_DELAY_MS 5
  41. #define SERIAL_WRITES_BLOCK_WHEN_BUFFER_FULL
  42. // TODO needs to be the same as in pack_data.sh
  43. #define DISK_BLOCK_SIZE 512
  44. #define DISK_BLOCK_COUNT (256 + 128) // 384 * 512 = 196608
  45. //#define TEST_VOLCANO_AUTO_CONNECT "xx:xx:xx:xx:xx:xx 1"
  46. //#define TEST_CRAFTY_AUTO_CONNECT "xx:xx:xx:xx:xx:xx 0"
  47. #endif // __CONFIG_H__