OtaConfig.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * @file OtaConfig.h
  3. * @brief Header file of OTA Config.
  4. * @verbatim
  5. * ==============================================================================
  6. * ##### How to use #####
  7. * ==============================================================================
  8. *
  9. *
  10. @ endverbatim
  11. *
  12. * @author HiView SoC Software Team
  13. * @version 1.0.0
  14. * @date 2023-09-01
  15. */
  16. #ifndef __OTA_CONFIG_H__
  17. #define __OTA_CONFIG_H__
  18. #include "BoardConfig.h"
  19. #include "ProjectConfig.h"
  20. /*************************************************
  21. Firmware Bin Name Config
  22. *************************************************/
  23. /**
  24. * @brief The full path of the mips firmware in the USB flash drive.
  25. */
  26. #define OTA_BIN_NAME "TargetHis/His7315Upgrade.bin"
  27. /*************************************************
  28. Partition config
  29. *************************************************/
  30. //暂时保留下面这2个宏定义,待ddcci升级修改后可以去掉它们
  31. /**
  32. * @brief 定义A分区的起始地址
  33. */
  34. #define OTA_PART_A_ADDR (0x00009000)
  35. /**
  36. * @brief 定义B分区的起始地址
  37. */
  38. #define OTA_PART_B_ADDR (0x00218000)
  39. #endif