1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-25 20:02:37 +03:00

2080 Commits

Author SHA1 Message Date
Ivan Grokhotkov
153138e508 Merge pull request #1627 from Toshik/patch-2
TickerScheduler library link
2016-02-13 13:23:31 +03:00
Ivan Grokhotkov
1e0a766837 Merge pull request #1626 from plerup/master
Reference to the esp8266/Arduino makefile added
2016-02-13 13:23:16 +03:00
Ivan Grokhotkov
fe49fc6b84 Merge pull request #1621 from cmmakerclub/master
- Update board (ESPresso Lite) description.
2016-02-13 13:22:57 +03:00
Toshik
f563acb703 TickerScheduler library link
TickerScheduler library - to simplificate Ticker usage and avoid WDT reset
2016-02-12 14:06:00 +03:00
Peter Lerup
9ef2843f8d Reference to the esp8266/Arduino makefile added 2016-02-11 22:04:57 +01:00
Charles
e3bf9bb1e8 Added bit mask and constant for SerialConfig parameter
Permit use bit config avoiding test/compare all "hard-coded" values.
example
```arduino
if (section & CFG_HLP_MODBUS) {
DebuglnF("\r\n===== Modbus");
DebugF("Speed       : "); Debug(config.modbus.baud);

switch (config.modbus.proto & UART_NB_BIT_MASK) {
case UART_NB_BIT_5: Debug(" 5"); break;
case UART_NB_BIT_6: Debug(" 6"); break;
case UART_NB_BIT_7: Debug(" 7"); break;
case UART_NB_BIT_8: Debug(" 8"); break;
default : Debug(" ?"); break;
}
switch (config.modbus.proto & UART_PARITY_MASK) {
case UART_PARITY_NONE: Debug("N"); break;
case UART_PARITY_EVEN: Debug("E"); break;
case UART_PARITY_ODD : Debug("O"); break;
default : Debug("?"); break;
}
switch (config.modbus.proto & UART_NB_STOP_BIT_MASK) {
case UART_NB_STOP_BIT_0: Debug("0"); break;
case UART_NB_STOP_BIT_1: Debug("1"); break;
case UART_NB_STOP_BIT_15: Debug("15"); break;
case UART_NB_STOP_BIT_2 : Debug("2"); break;
default : Debug("?"); break;
}

DebugF("\r\nSlave Addr  : "); Debugln(config.modbus.slave);
DebugF("Holding Reg : 0x"); Debugln2(config.modbus.hr_addr,HEX);
DebugF("Enable Pin  : "); Debugln(config.modbus.en_pin);
}
```
2016-02-11 17:47:49 +01:00
Nat Weerawan
25c25ae995 - Update board (ESPresso Lite) description. 2016-02-11 11:26:19 +07:00
Ivan Grokhotkov
0ad2738d81 Merge branch 'patch-1' of https://github.com/h4rm0n1c/Arduino into h4rm0n1c-patch-1
# Conflicts:
#	doc/libraries.md
2016-02-10 19:28:21 +03:00
Ivan Grokhotkov
8bbc8d6e8b Merge pull request #1610 from WereCatf/patch-1
Add PCF8574 - library to the list.
2016-02-10 19:22:46 +03:00
Ivan Grokhotkov
0550e7283f Merge pull request #1608 from narongrat/master
Add ESPino (WROOM-02) by ThaiEasyElec.com
2016-02-10 19:22:28 +03:00
Ivan Grokhotkov
7cca087421 Merge pull request #1606 from krzychb/master
Added DImSwith to "Other libraries (not included with the IDE)"
2016-02-10 19:21:17 +03:00
Ivan Grokhotkov
33665c08f1 Merge pull request #1605 from cmmakerclub/master
Add ESPert's ESPresso Lite to boards.txt & variants
2016-02-10 19:20:51 +03:00
Ivan Grokhotkov
09f8284d5e Merge pull request #1600 from shmuelzon/manifest-content-type
Added 'text/cache-manifest' content type
2016-02-10 19:19:31 +03:00
Ivan Grokhotkov
f77d996fe9 Merge pull request #1596 from hallard/master
Added universal Teleinfo to libraries.md
2016-02-10 19:19:10 +03:00
Ivan Grokhotkov
d868be956c Merge pull request #1590 from probonopd/patch-2
Add esp8266_mdns to libraries.md
2016-02-10 19:18:48 +03:00
Harrison Mclean
36a6ce1f61 Update libraries.md
Added DMD2 Library
2016-02-10 03:33:55 +08:00
WereCatf
93a40d82a3 Add PCF8574 - library to the list. 2016-02-08 20:26:56 +02:00
Narongrat Srimee
708c7823df Add LED_BUILTIN definition #1556 2016-02-08 20:18:27 +07:00
Narongrat Srimee
bd0c9f7394 Update boards.txt 2016-02-08 20:16:31 +07:00
Narongrat Srimee
d96d3465de Merge pull request #4 from narongrat/narongrat-patch-1
Update package_esp8266com_index.template.json
2016-02-08 19:50:33 +07:00
Narongrat Srimee
4a119f048f Update package_esp8266com_index.template.json 2016-02-08 19:50:02 +07:00
Narongrat Srimee
f88c9624be Merge pull request #3 from narongrat/patch-3
Update boards.md - add ESPino by ThaiEasyElec
2016-02-08 19:45:56 +07:00
Narongrat Srimee
fbd611c49b Merge pull request #2 from narongrat/patch-2
Create pins_arduino.h for ESPino (WROOM-02)
2016-02-08 19:44:41 +07:00
Narongrat Srimee
d8bfa714fb Merge pull request #1 from narongrat/patch-1
Add boards.txt
2016-02-08 19:43:06 +07:00
Nat Weerawan
5dc34d1f95 - Update board and filesystem detail.
- use LED_BUILTIN instead of BUILTIN_LED.
- update package_esp8266com_index.template.json file.
2016-02-08 19:31:58 +07:00
krzychb
2a78cb152a Added DImSwith to "Other libraries (not included with the IDE)"
This library let you control electronic dimmable ballasts for fluorescent light tubes remotely as if using a wall switch.
2016-02-08 12:57:59 +01:00
Nat Weerawan
b01a766d17 Add ESPert ESPresso Lite to boards.txt & variants 2016-02-08 18:39:07 +07:00
Narongrat Srimee
e1b1ea90d5 Update boards.md - add ESPino by ThaiEasyElec
Update boards.md - add ESPino by ThaiEasyElec
http://thaieasyelec.com/products/wireless-modules/wifi-modules/espino-wifi-development-board-detail.html
2016-02-08 18:31:06 +07:00
Narongrat Srimee
0db198ed68 Create pins_arduino.h for ESPino (WROOM-02)
Create pins_arduino.h for ESPino (WROOM-02) by ThaiEasyElec.com
2016-02-08 18:17:03 +07:00
Narongrat Srimee
5dbbb5aaf3 Update boards.txt - add espinotee
Adding new board ESPino (WROOM-02 Module) by ThaiEasyElec.com
2016-02-08 18:11:03 +07:00
Assaf Inbal
728e2dfae9 Added 'text/cache-manifest' content type 2016-02-08 06:58:19 +02:00
Charles
b4f21923f1 Added Teleinfo Library 2016-02-07 02:41:54 +01:00
Charles
fe3722c3e5 Added Teleinfo library 2016-02-07 02:21:28 +01:00
probonopd
047292a06b Update libraries.md 2016-02-06 15:01:26 +01:00
Markus
04c66091af Merge pull request #1588 from h4rm0n1c/schematic_pins_fix
Schematic pin reordering fix
2016-02-06 10:05:53 +01:00
h4rm0n1c
199ccc5d23 Fix Schematic Pin Ordering
Reorders Schematic Pins GPIO 4 and 5 so they reflect the module pinout.

This brings the schematics in line with the module pinouts depicted
elsewhere in the documentation.
2016-02-06 13:16:00 +08:00
Ivan Grokhotkov
737f6c28ea Remove forced alignment in operators new and delete
This alignment prevents umm_malloc to detect buffer overruns which fall within padding introduced by new/new[]. Allocated memory will be aligned by design of umm_malloc, so we don't need to pad anything here.
Also fixed some formatting/newlines and removed unused header files.
2016-02-06 02:06:56 +03:00
Ivan Grokhotkov
6fc141772c Implement static initialization guards (#500) 2016-02-06 02:06:56 +03:00
Ben Pirt
7beda37da1 Implementation of Tone API using timer1 2016-02-05 12:03:29 +00:00
Ivan Grokhotkov
b5684b4641 Merge pull request #1574 from rherget/small_doc_fix
fix demo OTA php script
2016-02-04 22:45:22 +03:00
Ivan Grokhotkov
3e42042b86 Fix warning in libc_replacements.c 2016-02-04 20:02:47 +03:00
Roland von Herget
dbcf674ec2 fix demo OTA php script 2016-02-04 17:43:06 +01:00
Ivan Grokhotkov
3b2ea52d23 Merge pull request #1563 from mvdbro/master
Configurable I2C clock stretching limit
2016-02-04 17:46:27 +03:00
Ivan Grokhotkov
f3a4c0aa4d Merge pull request #1560 from hallard/master
Changed arg, hasArg, header, hasHeader from const char * to String
2016-02-04 17:46:16 +03:00
Alex
573a0fb47f Add LED_BUILTIN definition (#1556)
keep arduino incompatible BUILTIN_LED (+22 squashed commits)
[e124f9c] keep arduino incompatible BUILTIN_LED
[18dab66] keep arduino incompatible BUILTIN_LED
[0095de6] keep arduino incompatible BUILTIN_LED
[cca2714] keep arduino incompatible BUILTIN_LED
[ff62bfb] keep arduino incompatible BUILTIN_LED
[fd6f7c0] keep arduino incompatible BUILTIN_LED
[220b02a] keep arduino incompatible BUILTIN_LED
[b871b1b] keep arduino incompatible BUILTIN_LED
[1d97cac] keep arduino incompatible BUILTIN_LED
[ebc2667] changed BUILTIN_LED to LED_BUILTIN
[7008a27] changed BUILTIN_LED to LED_BUILTIN
[cf3f6da] changed BUILTIN_LED to LED_BUILTIN
[5e11c43] changed BUILTIN_LED to LED_BUILTIN
[8645bd5] changed BUILTIN_LED to LED_BUILTIN
[faae742] changed BUILTIN_LED to LED_BUILTIN
[df2659b] changed BUILTIN_LED to LED_BUILTIN
[1eb74d5] changed BUILTIN_LED to LED_BUILTIN
[fb9e977] changed BUILTIN_LED to LED_BUILTIN
[b735737] changed BUILTIN_LED to LED_BUILTIN
[d0557dd] changed BUILTIN_LED to LED_BUILTIN
[a25e4aa] changed BUILTIN_LED to LED_BUILTIN
[7865ace] changed BUILTIN_LED to LED_BUILTIN
2016-02-04 17:44:17 +03:00
Ivan Grokhotkov
5e8be46e84 Merge pull request #1552 from andig/spiffs
Change %i to %d for ets_printf compatibility
2016-02-04 17:39:09 +03:00
Ivan Grokhotkov
339140c756 Use umm_malloc for heap management 2016-02-04 13:14:47 +03:00
Ivan Grokhotkov
2e1be32825 Fix undefined reference to os_free (#1522) 2016-02-04 01:24:38 +03:00
Ivan Grokhotkov
1d149560be Fix WiFi scan issue (#1355) 2016-02-04 01:19:29 +03:00
mvdbro
3f15903566 Configurable I2C clock stretching limit
Use Wire.setClockStretchLimit(limit)
limit is in uSeconds
2016-02-03 17:05:04 +01:00