mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/*
|
|
* This file is part of Espruino, a JavaScript interpreter for Microcontrollers
|
|
*
|
|
* Copyright (C) 2015 Gordon Williams <gw@pur3.co.uk>
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* ----------------------------------------------------------------------------
|
|
* This file is designed to be parsed during the build process
|
|
*
|
|
* Contains ESP8266 and Wifi library specific functions.
|
|
*
|
|
* FOR DESCRIPTIONS OF THE WIFI FUNCTIONS IN THIS FILE, SEE
|
|
* libs/network/jswrap_wifi.c (or http://www.espruino.com/Reference#Wifi)
|
|
* ----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "jswrap_wifi.h"
|
|
|
|
#ifndef LIBS_NETWORK_ESP8266_JSWRAP_ESP8266_NETWORK_H_
|
|
#define LIBS_NETWORK_ESP8266_JSWRAP_ESP8266_NETWORK_H_
|
|
#include "jsvar.h"
|
|
|
|
void jswrap_ESP8266_wifi_init1();
|
|
void jswrap_ESP8266_wifi_soft_init();
|
|
|
|
#endif /* LIBS_NETWORK_ESP8266_JSWRAP_ESP8266_NETWORK_H_ */
|