Terry Ellison
2b53e8db59
Merge pull request #1037 from ABonner/crypto-hashchunk
...
New chunk capable crypto hash functions
2016-02-22 12:50:22 +00:00
Terry Ellison
e128d2ec3a
Merge pull request #1076 from ABonner/dev-file-docfix
...
Update file documentation to clarify that reads are limited to buffer
2016-02-22 11:18:07 +00:00
Adam Bonner
0e770d95e7
Update file documentation to clarify that reads are limited to LUAL_BUFFERSIZE bytes max
2016-02-21 22:16:38 -08:00
Adam Bonner
96f905bf81
Crypto-new_hash Improved code based on review in #1037
2016-02-21 21:13:06 -08:00
Adam Bonner
332b53b9db
Initial implementation of a chunk capable hash function in crypto module
2016-02-21 21:13:06 -08:00
Marcel Stör
9970f8dc34
Rework the BME280 docs to be in line with our standards
2016-02-22 00:10:22 +01:00
devsaurus
e0c262d6ea
fix fix list in sigma-delta
2016-02-21 22:32:34 +01:00
devsaurus
424f9f9f88
include new bme280 and fix list in sigma-delta
2016-02-21 22:28:01 +01:00
Arnim Läuger
b171ca35ba
Merge pull request #1008 from vsky279/bme280
...
BME280/BMP280 Digital Pressure Sensor module
2016-02-21 20:58:37 +01:00
vsky
6bd0ec4480
BME280/BMP280 Digital Pressure Sensor module
2016-02-21 19:51:08 +01:00
Marcel Stör
716e6824db
Merge pull request #1070 from devsaurus/all-modules
...
Increase irom0_0_seg size for all-modules build.
2016-02-21 14:49:12 +01:00
TerryE
ffa7ee9b67
Addition of encoder module with bas64 and hex encode/decode as per #925
2016-02-21 04:18:27 +00:00
devsaurus
c1652adeeb
Increase irom0_0_seg size for all-modules build.
2016-02-20 23:01:58 +01:00
TerryE
0ef362472c
Add node.egc.setmode() + constants as per #609
2016-02-20 19:15:52 +00:00
Arnim Läuger
8743319b02
Merge pull request #1000 from devsaurus/sigma_delta
...
Add sigma_delta module.
2016-02-20 20:11:42 +01:00
Arnim Läuger
e82cb974a6
Merge pull request #1057 from pjsg/hwtimer
...
Add real hw_timer support and convert the pwm module to use it
2016-02-20 20:05:40 +01:00
Terry Ellison
68919dea65
Merge pull request #1004 from cheloftus/dev
...
Added crypto.fhash function for hashing files
2016-02-19 20:16:09 +00:00
devsaurus
8982650df9
Add sigma_delta module.
2016-02-18 21:35:58 +01:00
Terry Ellison
dc905f080b
Merge pull request #1063 from DiUS/fscfg
...
Add file.fscfg() command for fs location + size.
2016-02-18 08:51:03 +00:00
philip
669543bbf2
Hardware timer support and convert the PWM module to use it
2016-02-17 21:07:33 -05:00
Johny Mattsson
1fd98d9f86
Add file.fscfg() command for fs location + size.
2016-02-18 12:52:40 +11:00
Johny Mattsson
1afa72d53a
Merge pull request #1061 from TerryE/dev-task-if
...
Add New Tasking I/F and rework GPIO, UART, etc to support it
2016-02-18 11:51:27 +11:00
Terry Ellison
16953690bb
Merge pull request #902 from Alkorin/ws2812-buffer-1.5
...
ws2812 strip data buffer
2016-02-17 22:05:47 +00:00
Terry Ellison
4501f655f6
Merge pull request #1050 from jfollas/file-exists
...
Added file.exists() method
2016-02-17 22:04:09 +00:00
TerryE
49733f6f6d
Add New Tasking I/F and rework GPIO, UART, etc to support it
...
As with the last commit this rolls up the follwowing, but include the various
review comments on the PR.
- **Documentation changes**. I've added the taks FAQ as a stub new Extension
developer FAQ, and split the old FAQ into a Lua Developer FAQ and a Hardware
FAQ.
- **Tasking I/F**. New `app/task/Makefile`, `app/task/task.c`,
`app/include/task/task.h` and `app/Makefile` as per previous commit. Cascade
changes to `app/driver/uart.c`, `app/include/driver/uart.h`,
`app/user/user_main.c` and `app/modules/node.c`
- **GPIO Rework** to `app/modules/gpio.c` and `pin_map.[hc]`, `platform.[hc]`
in `app/platform`
- **Other Optimisations** Move the `platform_*_exists()` from
`app/platform/common.c` to static inline declarations in `platform.h` as
this generates faster, smaller code. Move lgc.a routines out of iram0.
2016-02-17 17:13:17 +00:00
Terry Ellison
19471f54ad
Merge pull request #1056 from devsaurus/uart_baud
...
Enable UART baudrate 256000 in platform layer.
2016-02-15 22:01:06 +00:00
Marcel Stör
e8c89fac19
Merge pull request #1048 from devsaurus/modules_cleanup
...
Remove Lua modules with equivalent ones in app/modules.
2016-02-15 22:46:23 +01:00
devsaurus
c88f0bd3f8
Enable UART baudrate 256000 in platform layer.
2016-02-15 21:40:20 +01:00
devsaurus
ee96273191
Remove lua modules with equivalent ones in app/modules.
2016-02-14 23:03:33 +01:00
Marcel Stör
639a11e9c4
Merge pull request #1043 from hvegh/dev
...
Add i2c based module for am2320 humidity sensor
2016-02-14 15:27:00 +01:00
Henk Vergonet
a1c1e015ff
Add i2c based module for am2320 humidity sensor
...
Example use:
> sda=1
> scl=2
> am2320.init(sda,scl)
> rh, t = am2320.read()
> print(string.format("Temperature: %s degrees C", t / 10))
> print(string.format("RH: %s %%", rh / 10))
signed-off-by: henk.vergonet@gmail.com
2016-02-14 15:12:42 +01:00
jfollas
d4ae67d0b4
Changed filename length error handling per TerryE's suggestion
2016-02-13 18:58:04 -05:00
jfollas
44786a22ff
Added file.exists() method to save the need to use file.list() for checking file existence
2016-02-13 17:37:04 -05:00
philip
0e9a0d43d4
Direct port of the struct module that provides access to
...
packed structures in strings. Very useful for network protocol
packing/unpacking. The docs are directly converted from the original.
Review feedback
Fix typo
2016-02-13 08:32:25 -05:00
Marcel Stör
2c687313de
Merge pull request #1002 from pjsg/mqtt
...
Fix memory exhaustion in mqtt under circumstances from issue #975
2016-02-10 12:58:26 +01:00
Marcel Stör
c40cd0953e
Merge pull request #1021 from Takkuz/dev
...
Added full support for DS3231
2016-02-10 12:57:44 +01:00
Vittorio Giovanelli
ecd79d7914
Fixed some grammar on docs
2016-02-10 09:32:37 +01:00
Marcel Stör
2e37a52aaa
Merge pull request #1030 from devsaurus/spi_pinconfig
...
Enable spi functionality on pins after internal config has been applied.
2016-02-10 07:06:13 +01:00
Marcel Stör
2c5303d51f
Merge pull request #1029 from devsaurus/spi_buffer
...
Extend data type for spi miso/mosi buffer offset to 16 bit.
2016-02-10 07:05:59 +01:00
devsaurus
5d8848ecaf
Enable spi functionality on pins after internal config has been applied.
2016-02-09 23:26:40 +01:00
devsaurus
dc2e1efefb
Extend data type for spi miso/mosi buffer offset to 16 bit.
2016-02-09 22:05:05 +01:00
Arnim Läuger
6623b9e3fd
spi.CPOL_HIGH supported
...
with bf74b617d0
2016-02-09 20:30:58 +01:00
Marcel Stör
b3335819b8
Move Markdown syntax hint to a more sensible place
2016-02-08 21:52:21 +01:00
Vittorio Giovanelli
ca104a96ce
Added full support for DS3231
2016-02-07 21:19:33 +01:00
Arnim Läuger
25585672ae
Merge pull request #1014 from urish/patch-1
...
Fix secure TCP connections for `net` and `mqtt` modules.
2016-02-07 19:51:32 +01:00
Uri Shaked
31a62a9eb1
Fix secure MQTT connections
...
Call `espconn_secure_set_size()` before calling `espconn_secure_connect()`, similar to how the http module works
2016-02-07 18:11:30 +02:00
Terry Ellison
81c1d55aaa
Merge pull request #1016 from marcelstoer/dev-contribution-update
...
Add section about writing documentation
2016-02-06 22:47:57 +00:00
Marcel Stör
6f7f5bfc91
Add section about writing documentation
...
Fixes #1013
2016-02-06 23:15:29 +01:00
Marcel Stör
e9cde6eb34
Correct secure option in MQTT documentation
...
Fixes #996
2016-02-06 22:28:07 +01:00
Arnim Läuger
d760a5e29c
Merge pull request #940 from devsaurus/dev-ssd1327
...
implement architecture dependent delay functions for u8glib
2016-02-06 21:46:01 +01:00