drv_de_version.c 454 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief drv display engine version interface
  9. */
  10. #include <kernel.h>
  11. #define DRV_DE_VERSION_NUMBER 0x01000000
  12. #define DRV_DE_VERSION_STRING "1.0.0"
  13. uint32_t drv_de_version_dump(void)
  14. {
  15. printk("drv_display_engine: version %s ,release time: %s:%s\n", DRV_DE_VERSION_STRING, __DATE__, __TIME__);
  16. return DRV_DE_VERSION_NUMBER;
  17. }