dev_info_service.h 445 B

1234567891011121314151617181920
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #define DEV_INFO_MANUFACTURER_NAME "Flipper Devices Inc."
  8. #define DEV_INFO_SERIAL_NUMBER "1.0"
  9. #define DEV_INFO_FIRMWARE_REVISION_NUMBER TARGET
  10. #define DEV_INFO_SOFTWARE_REVISION_NUMBER GIT_COMMIT " " GIT_BRANCH " " GIT_BRANCH_NUM " " BUILD_DATE
  11. bool dev_info_service_init();
  12. #ifdef __cplusplus
  13. }
  14. #endif