Stephan Hadinger
774decee21
Avoid crash if malloc fails take 2
2022-11-18 17:27:09 +01:00
Theo Arends
0674f9b0b6
Add command ``SSerialBuffer 64..256``
...
Add command ``SSerialBuffer 64..256`` to change software serial bridge receive buffer size from default (64) to max local buffer size (256) (#17120 )
2022-11-18 13:00:59 +01:00
s-hadinger
cb234a2694
Revert "Avoid crash if malloc fails"
2022-11-18 07:43:38 +01:00
Stephan Hadinger
e144b57b53
Avoid crash if malloc fails
2022-11-17 20:29:31 +01:00
Stephan Hadinger
2549203c13
Added WS2812 and Light ArtNet DMX control over UDP port 6454
2022-11-13 18:22:39 +01:00
Theo Arends
b7f6a7b00a
Clean up logging functions
2022-11-11 09:30:31 +01:00
Theo Arends
c351c62baf
Fix possible serial watchdogs
2022-10-31 11:25:00 +01:00
Jason2866
cd14c15c41
rm cam_hal.h...
...
since not needed anymore with core 2.0.5.2
2022-10-30 11:03:05 +01:00
Jason2866
f77a5c96f6
remove webcam lib
2022-10-18 17:30:39 +02:00
Stephan Hadinger
b4aca5a3f3
Zigbee friendly names per endpoint
2022-10-02 20:54:49 +02:00
Stephan Hadinger
3a54e8d84c
Fix json parsing
2022-09-06 19:49:12 +02:00
Theo Arends
212cbe7d85
Fix extra space in non-decimal numbers
...
Fix extra space in non-decimal numbers (#16365 )
2022-08-28 14:51:32 +02:00
Jason2866
f9707217e6
Move DHT ESP32 lib to ESP32 lib
2022-08-09 11:46:25 +02:00
Theo Arends
541be4a8ab
Add telegram DNS checks
2022-06-20 10:49:23 +02:00
Theo Arends
c988ba1645
Add user control over DNS timeout reducing blocking
...
Add command ``DnsTimeout 100..20000`` to change default DNS timeout from 1000 msec blocking if no DNS server found
2022-06-19 17:57:43 +02:00
Stephan Hadinger
82d4e14171
Cleaning unused variables
2022-06-03 22:57:05 +02:00
Stephan Hadinger
999b477419
Simplified SBuffer
2022-05-23 21:12:47 +02:00
Theo Arends
522bccb3e2
Initial support for USB serial
...
Initial support for USB serial when define ARDUINO_USB_CDC_ON_BOOT=1
2022-04-24 17:36:10 +02:00
Theo Arends
9d179c1093
Add ESP32 TasmotaSerial uart mapping
...
- TasmotaSerial library from v3.4.0 to v3.5.0 (#14981 )
- TasmotaSerial implement ``end()``
- ESP32 TasmotaSerial uart mapping to support multiple ``begin()`` and implement ``getUart()`` (#14981 )
2022-02-27 13:28:36 +01:00
Theo Arends
71bc58eeae
Fix correct use of uart0
2022-01-19 12:22:30 +01:00
Theo Arends
b0dafb57a4
Add valid pin checks for ESP32 family
2022-01-19 11:31:16 +01:00
Theo Arends
e98498a823
Add uart0 to user selection
...
Add uart0 to user selection (#10203 )
2022-01-19 11:01:55 +01:00
Theo Arends
479b378707
Fix Modbus serial config
2022-01-06 14:06:56 +01:00
Theo Arends
5a73aa1e1f
Refactor serial config
...
Refactor serial config removing specific stopbit count and only support serial config constants (#14212 )
2021-12-30 14:19:24 +01:00
Theo Arends
3890237a5f
Add ESP32 dedicated DHT driver
...
- Add ESP32 dedicated DHT driver using standard Adafruit library.
- Extent DHT probe interval time from 2 to 4 seconds solving some misreadings
2021-12-29 14:57:56 +01:00
Theo Arends
41d958020e
Fix possible heap corruption due to PubSubClient memmove
...
Fix possible heap corruption due to invalid PubSubClient memmove parameters (#13700 )
2021-12-28 16:05:38 +01:00
Theo Arends
aaa87a037a
Revert "Merge pull request #14153 from wir3z/development"
...
This reverts commit d9ab90a2f9
, reversing
changes made to 7bf6e5a773
.
2021-12-25 11:34:58 +01:00
Theo Arends
4b539f9b94
Revert "Bump TasmotaSerial version to 3.4.0"
...
This reverts commit f2dfcb3f40
.
2021-12-25 11:34:43 +01:00
Theo Arends
f2dfcb3f40
Bump TasmotaSerial version to 3.4.0
2021-12-23 10:45:18 +01:00
wir3z
30d35b8c15
Moved kTasmotaSerialConfig to TasmotaSerial.h from Tasmota.h.
2021-12-22 12:23:17 -07:00
wir3z
3c8cda25fb
Added linux safe path.
2021-12-22 10:28:55 -07:00
wir3z
223314804d
Removed external function call, referenced header.
2021-12-22 10:22:16 -07:00
wir3z
4554a5ba9e
Revert "Added back missing external."
...
This reverts commit b8e9d9401e
.
2021-12-22 09:53:06 -07:00
wir3z
b8e9d9401e
Added back missing external.
2021-12-22 09:50:35 -07:00
wir3z
ee39f84bc2
Rolled out parity changes due to potential timing issues.
2021-12-22 09:47:20 -07:00
wir3z
b8752b7272
TasmotaSerial:
...
- Added transmit parity to software TX. Software RX just consumes in the incoming parity bit with no error checking.
- Fixed issue where Serial.begin for the ESP8266 was not passing the UART SerialConfig compatible values.
support.ino
- Cleanup to use already present ConvertSerialConfig API.
tasmota.ino:
- Force the baudrate + serial config settings after boot. Previously, the baudrate would change, but any non 8N1 settings were not applied.
xdrv_08_serial_bridge.ino:
- Increased the software serial bridge buffer size and changed type to prevent overflow.
- Added missing serial config settings to the serial begin. Previously was forcing 8N1.
xdrv_10_scripter.ino
- Cleanup to use already present ConvertSerialConfig API.
2021-12-22 09:23:15 -07:00
Stephan Hadinger
0589a28ec8
Change more platform definitions
2021-12-20 21:05:00 +01:00
Theo Arends
dbd7d29765
Fix CSE7761 comms
...
Fix CSE7761 and Sonoff Dual R3 comms
2021-11-12 14:39:14 +01:00
Stephan Hadinger
a36331fe47
Improved for zigbee
2021-11-11 19:22:15 +01:00
Stephan Hadinger
9084e36978
Make serial more responsive at low bitrate
2021-11-11 14:44:54 +01:00
Stephan Hadinger
9fcebb17ed
Move LList to its own library
2021-11-06 09:37:40 +01:00
Stephan Hadinger
e45f25f59a
Berry support for unishox compression
2021-11-04 08:17:42 +01:00
Jason2866
b02560fd8f
Webcam compile time optimization
...
* Optimize compile time (1)
2021-09-16 19:24:01 +02:00
Stephan Hadinger
6951c5aee5
Extend ext_vsnprintf to auto-malloc buffer
2021-06-03 22:11:14 +02:00
Theo Arends
fb44348a8c
Add support for MQTT Settings save/restore
2021-05-08 17:40:13 +02:00
Stephan Hadinger
4b55d5be52
Fix crash on Risc-V ESP32 C3
2021-04-19 12:14:26 +02:00
Jason2866
8e7e3512c1
add C3 variant
2021-04-17 19:52:14 +02:00
Jason2866
bbb0e7464b
fix if for riscv
2021-04-17 19:51:14 +02:00
Theo Arends
2350697815
Use IRAM_ATTR in place of ICACHE_RAM_ATTR
2021-04-02 17:14:08 +02:00
Theo Arends
b00b2708cb
Fix HC-SR04 on ESP32
...
Fix HC-SR04 on ESP32 (#11507 )
2021-03-30 17:58:29 +02:00