2020-06-03 18:40:05 -04:00
|
|
|
// SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
|
|
|
|
// SPDX-FileCopyrightText: Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
all: Unify header guard usage.
The code conventions suggest using header guards, but do not define how
those should look like and instead point to existing files. However, not
all existing files follow the same scheme, sometimes omitting header guards
altogether, sometimes using non-standard names, making it easy to
accidentally pick a "wrong" example.
This commit ensures that all header files of the MicroPython project (that
were not simply copied from somewhere else) follow the same pattern, that
was already present in the majority of files, especially in the py folder.
The rules are as follows.
Naming convention:
* start with the words MICROPY_INCLUDED
* contain the full path to the file
* replace special characters with _
In addition, there are no empty lines before #ifndef, between #ifndef and
one empty line before #endif. #endif is followed by a comment containing
the name of the guard macro.
py/grammar.h cannot use header guards by design, since it has to be
included multiple times in a single C file. Several other files also do not
need header guards as they are only used internally and guaranteed to be
included only once:
* MICROPY_MPHALPORT_H
* mpconfigboard.h
* mpconfigport.h
* mpthreadport.h
* pin_defs_*.h
* qstrdefs*.h
2017-06-29 17:14:58 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_EXTMOD_VFS_FAT_H
|
|
|
|
#define MICROPY_INCLUDED_EXTMOD_VFS_FAT_H
|
2014-12-27 15:20:51 -05:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
#include "py/obj.h"
|
2017-01-29 03:20:27 -05:00
|
|
|
#include "lib/oofatfs/ff.h"
|
|
|
|
#include "extmod/vfs.h"
|
2016-10-13 17:53:31 -04:00
|
|
|
|
2014-12-27 15:20:51 -05:00
|
|
|
typedef struct _fs_user_mount_t {
|
2016-02-13 15:51:21 -05:00
|
|
|
mp_obj_base_t base;
|
2021-04-23 15:26:42 -04:00
|
|
|
mp_vfs_blockdev_t blockdev;
|
2014-12-27 15:20:51 -05:00
|
|
|
FATFS fatfs;
|
|
|
|
} fs_user_mount_t;
|
|
|
|
|
2014-11-05 15:02:40 -05:00
|
|
|
extern const byte fresult_to_errno_table[20];
|
2017-01-26 23:04:17 -05:00
|
|
|
extern const mp_obj_type_t mp_fat_vfs_type;
|
2018-07-13 22:51:10 -04:00
|
|
|
extern const mp_obj_type_t mp_type_vfs_fat_fileio;
|
|
|
|
extern const mp_obj_type_t mp_type_vfs_fat_textio;
|
|
|
|
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ_3(fat_vfs_open_obj);
|
2016-02-28 10:17:24 -05:00
|
|
|
|
2021-04-23 15:26:42 -04:00
|
|
|
typedef struct _pyb_file_obj_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
FIL fp;
|
|
|
|
} pyb_file_obj_t;
|
2017-05-12 21:26:14 -04:00
|
|
|
|
2017-08-25 22:17:07 -04:00
|
|
|
#endif // MICROPY_INCLUDED_EXTMOD_VFS_FAT_H
|