From 64aaec8f54ad669ac807ffca9681fb6073bee6ab Mon Sep 17 00:00:00 2001 From: John Doe Date: Mon, 22 Jun 2015 16:16:09 +0300 Subject: [PATCH] more typos --- cores/esp8266/core_esp8266_i2s.c | 2 +- cores/esp8266/i2s.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cores/esp8266/core_esp8266_i2s.c b/cores/esp8266/core_esp8266_i2s.c index ec1dd42e7..d3f7e9bc6 100644 --- a/cores/esp8266/core_esp8266_i2s.c +++ b/cores/esp8266/core_esp8266_i2s.c @@ -1,5 +1,5 @@ /* - i2s.c - Software I2C library for esp8266 + i2s.c - Software I2S library for esp8266 Code taken and reworked from espessif's I2S example diff --git a/cores/esp8266/i2s.h b/cores/esp8266/i2s.h index 2b0964d25..cf5296b16 100644 --- a/cores/esp8266/i2s.h +++ b/cores/esp8266/i2s.h @@ -1,5 +1,5 @@ /* - i2s.h - Software I2C library for esp8266 + i2s.h - Software I2S library for esp8266 Copyright (c) 2015 Hristo Gochkov. All rights reserved. This file is part of the esp8266 core for Arduino environment. @@ -32,7 +32,7 @@ The 32bit samples basically are 2 16-bit signed values (the analog values for the left and right channel) concatenated as (Rout<<16)+Lout i2s_write_sample will block when you're sending data too quickly, so you can just -generate and push data as fast as you can and I2sPushSample will regulate the +generate and push data as fast as you can and i2s_write_sample will regulate the speed. */