Files
spiffs/py/params_test.h
Mark Rages 96ea844ae4 Python bindings.
Mounts a filesystem backed by a filesystem file-like or a list-of-chars.  Individual files follow Python's file-like-object protocol.

Tested with Python 2.7.
2017-09-11 21:45:38 -06:00

9 lines
158 B
C

#include <stdint.h>
typedef int32_t s32_t;
typedef uint32_t u32_t;
typedef int16_t s16_t;
typedef uint16_t u16_t;
typedef int8_t s8_t;
typedef uint8_t u8_t;