bon.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. /***************************************************************************
  2. Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
  3. by threewter 2005.3.9
  4. ***************************************************************************/
  5. /***************************************************************************
  6.     #说明: bon part
  7. ----------------------------------  Bug  --------------------------------------
  8. ----------------------------------  TODO list  --------------------------------------
  9. ----------------------------------修正--------------------------------------
  10. 2005-3-10 创建
  11. ***************************************************************************/
  12. #define MAX_PART 9
  13. #define PARTITION_OFFSET (~0)
  14. #define BON_YAFFS_PART 1
  15. typedef struct {
  16.     unsigned long offset;
  17.     unsigned long size;
  18.     unsigned long flag;
  19.     unsigned short *bad_blocks;
  20. } partition_t;
  21. typedef struct {
  22. int num_part;
  23. partition_t parts[MAX_PART];
  24. } bon_part_info;
  25. extern bon_part_info bon_part;
  26. int read_bon_partition(void);