mpconfigport_coverage.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2013-2016 Damien P. George
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. // Default unix config while intended to be comprehensive, may still not enable
  27. // all the features, this config should enable more (testable) options.
  28. #define MICROPY_VFS (1)
  29. #define MICROPY_PY_UOS_VFS (1)
  30. #include <mpconfigport.h>
  31. #define MICROPY_FLOAT_HIGH_QUALITY_HASH (1)
  32. #define MICROPY_ENABLE_SCHEDULER (1)
  33. #define MICROPY_READER_VFS (1)
  34. #define MICROPY_PY_DELATTR_SETATTR (1)
  35. #define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
  36. #define MICROPY_PY_BUILTINS_RANGE_BINOP (1)
  37. #define MICROPY_PY_BUILTINS_HELP (1)
  38. #define MICROPY_PY_BUILTINS_HELP_MODULES (1)
  39. #define MICROPY_PY_SYS_GETSIZEOF (1)
  40. #define MICROPY_PY_URANDOM_EXTRA_FUNCS (1)
  41. #define MICROPY_PY_IO_BUFFEREDWRITER (1)
  42. #define MICROPY_PY_IO_RESOURCE_STREAM (1)
  43. #define MICROPY_PY_URE_MATCH_GROUPS (1)
  44. #define MICROPY_PY_URE_MATCH_SPAN_START_END (1)
  45. #define MICROPY_PY_URE_SUB (1)
  46. #define MICROPY_VFS_POSIX (1)
  47. #undef MICROPY_VFS_FAT
  48. #define MICROPY_VFS_FAT (1)
  49. #define MICROPY_PY_FRAMEBUF (1)
  50. #define MICROPY_PY_COLLECTIONS_NAMEDTUPLE__ASDICT (1)
  51. #define MICROPY_PY_UCRYPTOLIB (1)
  52. // TODO these should be generic, not bound to fatfs
  53. #define mp_type_fileio mp_type_vfs_posix_fileio
  54. #define mp_type_textio mp_type_vfs_posix_textio
  55. // use vfs's functions for import stat and builtin open
  56. #define mp_import_stat mp_vfs_import_stat
  57. #define mp_builtin_open mp_vfs_open
  58. #define mp_builtin_open_obj mp_vfs_open_obj