Open Model Railroad Network (OpenMRN)
Loading...
Searching...
No Matches
esp_common.h
1#ifndef _ESP_COMMON_H_
2#define _ESP_COMMON_H_
3
4// Prevent including the freertosconfig
5//#define INC_FREERTOS_H
6
7#include "c_types.h"
8
9typedef uint8_t u8_t;
10typedef int8_t s8_t;
11typedef uint16_t u16_t;
12typedef int16_t s16_t;
13typedef uint32 u32_t;
14typedef int32 s32_t;
15
16#include "spiffs_config.h"
17#include "espressif/esp_spiffs.h"
18#include <spi_flash.h>
19
20#endif // _ESP_COMMON_H_