19 lines
336 B
C
19 lines
336 B
C
|
|
#ifndef _NODEMCU_SPI_COMMON_H_
|
|
#define _NODEMCU_SPI_COMMON_H_
|
|
|
|
#include "lauxlib.h"
|
|
|
|
typedef struct {
|
|
int host;
|
|
} lspi_host_t;
|
|
|
|
// ***************************************************************************
|
|
// SPI master
|
|
//
|
|
int luaopen_spi_master( lua_State *L );
|
|
int lspi_master( lua_State *L );
|
|
|
|
|
|
#endif /*_NODEMCU_SPI_COMMON_H_*/
|