Add support for ESP8266 // Resolve #119

This commit is contained in:
Valeriy Koval
2015-04-09 18:50:03 +03:00
parent 9b3ca7ee0b
commit 181959f1de
7 changed files with 126 additions and 29 deletions

View File

@ -0,0 +1,21 @@
How to build PlatformIO based project
=====================================
1. `Install PlatformIO <http://docs.platformio.org/en/latest/installation.html>`_
2. Download `source code with examples <https://github.com/platformio/platformio/archive/develop.zip>`_
3. Extract ZIP archive
4. Run these commands:
.. code-block:: bash
# Change directory to example
> cd platformio-develop/examples/espressif/esp8266-native
# Process example project
> platformio run
# Upload firmware
> platformio run --target upload
# Clean build files
> platformio run --target clean

View File

@ -0,0 +1,22 @@
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
# Simple and base environment
# [env:mybaseenv]
# platform = %INSTALLED_PLATFORM_NAME_HERE%
# framework =
# board =
#
# Automatic targets - enable auto-uploading
# targets = upload
[env:esp01_8266]
platform = espressif
board = esp01

View File

@ -0,0 +1,5 @@
#ifndef __USER_CONFIG_H__
#define __USER_CONFIG_H__
#endif

View File

@ -0,0 +1,33 @@
/******************************************************************************
* Copyright 2013-2014 Espressif Systems (Wuxi)
*
* FileName: user_main.c
*
* Description: entry file of user application
*
* Modification history:
* 2014/1/1, v1.0 create this file.
*******************************************************************************/
#include "ets_sys.h"
#include "osapi.h"
#include "user_interface.h"
#include "smartconfig.h"
void ICACHE_FLASH_ATTR
smartconfig_done(void *data)
{
struct station_config *sta_conf = data;
wifi_station_set_config(sta_conf);
wifi_station_disconnect();
wifi_station_connect();
}
void user_init(void)
{
os_printf("SDK version:%s\n", system_get_sdk_version());
wifi_set_opmode(STATION_MODE);
smartconfig_start(SC_TYPE_AIRKISS, smartconfig_done);
}

View File

@ -16,8 +16,7 @@
"maximum_size": 524288, "maximum_size": 524288,
"protocol": "arduino", "protocol": "arduino",
"require_upload_port" : true, "require_upload_port" : true,
"speed": 115200, "speed": 115200
"wait_for_upload_port": true
}, },
"url": "https://nurdspace.nl/ESP8266", "url": "https://nurdspace.nl/ESP8266",
"vendor": "Espressif" "vendor": "Espressif"

View File

@ -5,7 +5,9 @@
Builder for Espressif MCUs Builder for Espressif MCUs
""" """
import os
from os.path import join from os.path import join
from platform import system
from SCons.Script import (COMMAND_LINE_TARGETS, AlwaysBuild, Builder, Default, from SCons.Script import (COMMAND_LINE_TARGETS, AlwaysBuild, Builder, Default,
DefaultEnvironment) DefaultEnvironment)
@ -65,45 +67,59 @@ env.Replace(
"-Wl,-static" "-Wl,-static"
], ],
LIBPATH=[join("$PLATFORMFW_DIR", "sdk", "lib")],
LIBS=["hal", "phy", "net80211", "lwip", "wpa", "main", "pp", "c", "gcc"],
SIZEPRINTCMD='"$SIZETOOL" -B -d $SOURCES', SIZEPRINTCMD='"$SIZETOOL" -B -d $SOURCES',
UPLOADER=join("$PIOPACKAGES_DIR", "tool-esptool", "esptool"), UPLOADER=join("$PIOPACKAGES_DIR", "tool-esptool", "esptool.py"),
UPLOADERFLAGS=[ UPLOADERFLAGS=[
"-vv", "--port", "$UPLOAD_PORT",
"-cd", "none", "--baud", "$UPLOAD_SPEED",
"-cb", "$UPLOAD_SPEED", "write_flash",
"-cp", "$UPLOAD_PORT", "0x00000", join("$BUILD_DIR", "firmware.elf-0x00000.bin"),
"-ca", "0x00000", "0x40000", join("$BUILD_DIR", "firmware.elf-0x40000.bin")
"-cf", "${SOURCES[0]}",
"-ca", "0x40000",
"-cf", "${SOURCES[1]}"
], ],
UPLOADCMD='$UPLOADER $UPLOADERFLAGS' UPLOADCMD='python $UPLOADER $UPLOADERFLAGS'
) )
env.Append( env.Append(
BUILDERS=dict( BUILDERS=dict(
ElfToBin=Builder( ElfToBin=Builder(
action=" ".join([ action=" ".join([
"$UPLOADER", "python", "$UPLOADER", "elf2image", "$SOURCES"
"-eo", "$SOURCES",
"-bo", "${TARGETS[0]}",
"-bs", ".text",
"-bs", ".data",
"-bs", ".rodata",
"-bc", "-ec",
"-eo", "$SOURCES",
"-es", ".irom0.text", "${TARGETS[1]}",
"-ec", "-v"
]), ]),
suffix=".bin" suffix=".bin"
) )
) )
) )
if system() == "Windows":
paths = []
for path in os.environ['PATH'].split(";"):
if "python" in path.lower():
paths.append(path)
env.AppendENVPath(
"PATH", ";".join(paths)
)
#
# Configure SDK
#
if "FRAMEWORK" not in env:
env.Append(
CPPPATH=[
join("$PIOPACKAGES_DIR", "sdk-esp8266", "include"),
"$PROJECTSRC_DIR"
],
LIBPATH=[join("$PIOPACKAGES_DIR", "sdk-esp8266", "lib")]
)
env.Replace(
LDSCRIPT_PATH=join(
"$PIOPACKAGES_DIR", "sdk-esp8266", "ld", "eagle.app.v6.ld"),
LIBS=["c", "gcc", "phy", "pp", "net80211", "lwip", "wpa", "main",
"json", "upgrade", "smartconfig", "at", "ssl"]
)
# #
# Target: Build executable and linkable firmware # Target: Build executable and linkable firmware
# #
@ -117,9 +133,7 @@ target_elf = env.BuildFirmware()
if "uploadlazy" in COMMAND_LINE_TARGETS: if "uploadlazy" in COMMAND_LINE_TARGETS:
target_firm = join("$BUILD_DIR", "firmware.bin") target_firm = join("$BUILD_DIR", "firmware.bin")
else: else:
target_firm = env.ElfToBin( target_firm = env.ElfToBin(target_elf)
[join("$BUILD_DIR", "firmware_00000"),
join("$BUILD_DIR", "firmware_40000")], target_elf)
# #
# Target: Print binary size # Target: Print binary size

View File

@ -44,7 +44,10 @@ elif env.get("PLATFORM") == "timsp430":
) )
elif env.get("PLATFORM") == "espressif": elif env.get("PLATFORM") == "espressif":
env.Prepend( env.Prepend(
CPPPATH=[join("$PLATFORMFW_DIR", "sdk", "include")] CPPPATH=[join("$PLATFORMFW_DIR", "sdk", "include")],
LIBPATH=[join("$PLATFORMFW_DIR", "sdk", "lib")],
LIBS=["hal", "phy", "net80211", "lwip",
"wpa", "main", "pp", "c", "gcc"]
) )
env.Replace(PLATFORMFW_DIR=PLATFORMFW_DIR) env.Replace(PLATFORMFW_DIR=PLATFORMFW_DIR)