Commit Graph

1969 Commits

Author SHA1 Message Date
Philip Gladstone 1d05c6c4bf Try to fix build 2024-12-13 02:59:05 +00:00
Philip Gladstone 540cea09ff Get console to build as well. 2024-12-13 02:40:01 +00:00
Philip Gladstone 88b25a8e16 Merge remote-tracking branch 'dius/dev-esp32-idf5.3.1' into esp32c5 2024-12-13 02:21:18 +00:00
Philip Gladstone 58e93a2627 This should build on esp32 now 2024-12-12 01:09:22 +00:00
Philip Gladstone ce940e101a I can't get the can module to build on esp32c5 2024-12-12 00:44:06 +00:00
Philip Gladstone 7f672374b1 Fixed the i2s problems 2024-12-12 00:09:10 +00:00
Philip Gladstone b61cba6a75 Merge remote-tracking branch 'origin/dev-esp32' into esp32c5 2024-12-11 02:26:49 +00:00
Jade Mattsson be6f6c570d Update IDF to v5.3.2
Having gone through the changelog from 5.3.1, this looks safe enough...
2024-12-10 16:10:37 +11:00
Jade Mattsson 134f21d309 Add chip-specific build defaults to CI
To help compile-test the different console options, for starters.
2024-12-10 13:11:38 +11:00
Jade Mattsson 4e6b8423bf Upgrade IDF to 5.3.1 2024-12-10 12:07:40 +11:00
Jade Mattsson 7b21778e6d
Refactor to clean up and fix console handling (#3666)
* Refactor into new 'console' module.

A breaking change, but should finally see us move away from the chronic edge
cases and inconsistent behaviour we have while trying to shoe-horn the
usb-serial-jtag and cdc-acm consoles into uart behaviour and assumptions.

* Fix and document console.write()

Added example on using framed data transmission over the console.

* fixup uart examples

* Add workaround for silently dropped console output.

* Add file upload helper script for console module.

Plus, it can serve as a reference for any IDEs which may need/want
updating.

* Fixup really silly copy/paste error.

* Make upload-file.py work better on CDC-ACM console.

* Updated console module doc with CDC-ACM info.

* Load file in binary mode in upload-file.py.
2024-12-10 11:08:10 +11:00
Philip Gladstone c53a72e741 Merge remote-tracking branch 'dius/dev-esp32-idf5.3.1' into esp32c5 2024-12-09 23:45:15 +00:00
Philip Gladstone 3e402baa77 Move forward to ubuntu24.04 to get a more modern python 2024-12-09 02:07:31 +00:00
Philip Gladstone de45362f5b Add esp32c5 to the CICD 2024-12-09 02:05:44 +00:00
Philip Gladstone 83cfea9d08 Builds and sort of runs. Some modules not yet supported 2024-12-09 02:03:07 +00:00
Jade Mattsson 7c5bb15154 Increase default system event task stack size.
Fixes the crash reported in #3660.
2024-10-25 10:46:27 +11:00
Jade Mattsson 4931b375c0 Increase console task stack size.
This allegedly resolves the reboot crashes seen on ESP32-S3 Zero.
It also removes the peculiar need to explicitly call
esp_vfs_console_register(), the absence of which previously would
trigger an assertion failure in xQueueGenericSend on input.
2024-10-18 18:09:22 +11:00
Jade Mattsson bee12d0a15 Address additional deprecation warnings 2024-10-18 13:11:37 +11:00
Jade Mattsson b78477f2b0 Fix 2x SPIFFS mounting/formatting related issues.
- If the initial filesystem mounting fails, then a subsequent file.format()
  does not mount it afterwards, necessitating a node.restart(). In the normal
  case, after file.format() the filesystem is mounted and ready for use.
  We now explicitly remount after a format to gain consistent behaviour.

- If using USB CDC, the auto-format on first boot interferes with USB
  enumeration, resulting in a failed startup. We now avoid doing an
  auto-format if the USB CDC console is enabled. The behaviour is
  configurable/overrideable via Kconfig.
2024-10-17 15:24:02 +11:00
Jade Mattsson 717617593a Only show startup delay setting if wifi module enabled 2024-10-17 11:41:14 +11:00
Jade Mattsson 2814b8c624 Fixes to make 5.3.1 run without crashing. 2024-10-14 18:59:31 +11:00
Jade Mattsson d483fd94d8 Upgrade IDF to 5.3.1 2024-10-14 11:57:23 +11:00
serg3295 6be07fbbf2
Add missing WiFi module to ESP32c3 build (#3659) 2024-08-08 07:45:34 +02:00
serg3295 a78abd41b4
Add node.info() (#3655) 2024-07-31 09:43:15 +02:00
Jade Mattsson 918f75310e Actually honour Kconfig line-endings settings. 2024-05-21 16:22:51 +10:00
Jade Mattsson 3b9ef17d33 Added node.chipmodel().
Updated and removed incorrect node module documentation.
2024-05-21 16:22:51 +10:00
Jade Mattsson 3203eba815 Disable CR/LF translation by default.
With the change to use the IDF's stdin to feed the Lua VM, the default
IDF CR/LF translation appears to cause issues with some IDEs.
2024-05-21 16:22:51 +10:00
Jade Mattsson 53da95b5ae Fix uart.on('data') on console
With the switch to use the IDF's stdin for feeding the Lua VM, we
unintentionally lost the ability to use uart.on('data') on the console uart.
This is since we no longer install the nodemcu uart driver on said uart.
In order to resolve this shortcoming, this commit refactors the uart.on('data')
delimiter handling and moves it away from platform.c into uart.c where it
really belongs. A new function, uart_feed_data(), is introduced, which is used
both by the nodemcu uart driver task as well as the nodemcu console driver
task (assuming the console is in fact a uart).

The linebuffer allocation/freeing is still in response to
uart.start()/uart.stop(), but it is now in uart.c rather than
platform.c.

The whole uart integration is still too tightly coupled between the platform
component and the module component's uart.c, but this makes it slightly
better at least.
2024-05-21 16:22:51 +10:00
serg3295 6036c8a6ed
Update u8g2 docs (#3650)
Added description for `updateDisplay()` and `updateDisplayArea()` functions.
2024-05-09 07:58:52 +02:00
serg3295 7c95e23216
Fix typo in u8g2 updateDisplay function mapping (#3649) 2024-05-03 12:51:05 +02:00
Philip Gladstone 92f37dea2d
Port of the rotary module to ESP32 (#3625)
* Ported rotary driver. Compiles but not tested.

* Added the rotary switch driver to the esp32 version

* Review comments. Also ensure that we have GPIO if we have ROTARY.

* Allow use of GPIO 0

* Another bad piece of documentation

* Fix docs and also free the timer

* Now adds a self reference to prevent GC until after close has been called and
any queued messages have been flushed.

* Simplified the code a bit
2024-04-26 21:25:43 -04:00
Jade Mattsson 4cdebe7191
Initial support for ESP32-C6 and ESP32-H2, plus assorted fixes & improvements (#3646)
* Proof-of-concept multi-type console support via stdio

* Address crashes on linput's use of printf.

On an empty line input, a C3 with UART console would panic while attempting
to output the new Lua prompt. The backtrace shows a xQueueSemaphoreTake
with uxItemSize==0 as the panic cause, deep inside the uart driver, invoked
via vfs_uart and vfs_console layers, from printf.
Similarly, the printf for outputting a backspace/erase sequence would also
trigger a panic.

This workaround (of not mixing fflush() with printf) is likely merely hiding
a deeper issue, but it appears to be consistent. Plus, printf with no args
and a user-supplied format string is a no-no and should be fixed anyway.

* Work around IDF inconsistency with stdout buffering.

* Increase console task stack size.

Seems on Xtensa it ended up not being enough.

* Switch to single-byte console reads.

* Stop cheating and feed Lua from the right context.

* Work around IDF buffering stdout even when told not to, on ACM consoles.

* Initial build support for esp32c6.

Plus fixup of module selection for a variety of targets.

* Update github actions to node 20 versions.

* Update github build to deal with Lua 5.3 being default.

* Address fatal compiler warning.

Newer IDF toolchain is stricter, and we'd apparently failed to build test
the Lua-5.1 path for some time.

* Initial build support for esp32h2.

* Upgrade IDF to v5.1.3

* Fix left-over incorrect type in uzlib.

* Avoid null pointer crashes when debugging startup.

* Workaround for using wifi module on S2 with USB-CDC console.

---------

Co-authored-by: Jade Mattsson <github@frozenlogic.org>
2024-04-26 17:35:22 -04:00
Jade Mattsson bc3b31fee5 Updated docs after review. 2024-03-27 15:43:59 +11:00
Jade Mattsson 830522ac33 Added espnow module with documentation. 2024-03-27 15:43:59 +11:00
Jade Mattsson bd6b70ee61 Add missing doc link to rtcmem module.
As pointed out by Marcel, thank you!
2024-03-27 13:51:31 +11:00
Marcel Stör 10d0a26f87 Add note about NodeMCU branches 2024-02-18 22:41:18 +01:00
Marcel Stör 4bc22d0c3a Bump MkDocs to latest 2024-02-18 22:41:18 +01:00
Christoph Thelen 14cdff107f
Update rmt translator (#3629)
* Choose the number of RMT buffers in the ws2812 module.

The number of buffers required for optimal operation should be selected
by the ws2812 module, not the caller.

* Add parameters for RGB LED bit times.

This patch adds compatibility for different RGB LEDS besides the WS2812.
ESP evaluation boards like the ESP32-C3-DevKitM-1 use an SK68XXMINI-HS
RGB LED which does not respond to the timings of this module.
The patch adds optional parameters for the bit timings to the write
function. If the new parameters are not supplied, the old values are used.
An example for the SK68XXMINI-HS is provided in the documentation.

* Remove restrictions from RTM translator.

The old RMT translator was not able to split the bits of the source
data into the size requested by the RMT transmitter. Either all 8 bits
of an input byte were translated or none.
The new routine removes the restriction by delivering exactly the
requested amount of data to the transmitter, which results in a more
balanced buffering of translated data under load.

* Add a parameter for the RGB LED reset time.

This patch introduces a new optional parameter for the reset time
in the RGB LED communication. The default is 51.2 microseconds. A
value of 0 sends no reset signal, which allows a small optimisation
for consecutive write commands.

Please note that the reset time of the old code should be 50
microseconds, as the define WS2812_DURATION_RESET suggested. Due to the
restrictions of the old RMT translator routine, it was slightly
increased to 51.2 microseconds. This patch keeps the value of 51.2
microseconds to be as compatible as possible.

* Minimize the time drift between RMT channels.

Place all RMT channels in a group to minimize the time drift between
the signals. Please note that this feature is not available on all
platforms.

* Fix the description of the SK6812 LED in the example code.

The SK6812 expects the data for the green LED first, then red and
finally blue. It should be described as a GRB LED.
2024-02-07 17:56:17 -05:00
Yiheng Cao 10e3783948
Fix potential integer overflow in getnum and fix the negation overflow in lua (#3634) 2024-02-05 19:27:00 -05:00
Johny Mattsson 6798f027f3 Upgrade to IDF v5.1.2 2024-02-02 14:50:57 +11:00
Philip Gladstone 4816c168d8
Add support for using multiple memory slots in rmt setup (#3568)
* Add support for using multiple memory slots in rmt setup

* Fix a crash when stopping an RMT receiver

* Add missing docs to the mkdocs
2024-02-01 20:31:56 -05:00
Mike_Went 3cc1d48b83 Fix example pins in docs/modules/uart.md 2024-01-30 12:36:10 +11:00
serg3295 796fd7ad0e Fix time.get() for 5.3-int32-singlefp firmware on IDF v5.0.2 2024-01-30 11:34:03 +11:00
serg3295 096164a75c fix(mqtt): adds parameter checking to nil 2024-01-30 11:34:03 +11:00
serg3295 9a9548b0b8 fix(mqtt): select next parameter in connect() 2024-01-30 11:34:03 +11:00
serg3295 9633b03af3 fix: mqtt module 2024-01-30 11:34:03 +11:00
Johny Mattsson 12035a7678 Upgrade to IDF v5.0.2
With minor update required to our spi module.
2024-01-30 11:34:03 +11:00
Johny Mattsson 1400d7bc6e Remove old cryptography package lock.
This workaround is no longer needed nor desired.
2024-01-30 11:34:03 +11:00
Johny Mattsson f126b6fe91 Initial migration to IDFv5.0
Plenty of dependency adjustments, printf format specificier updates,
FreeRTOS type and macro name modernisation, not to mention API changes.

Still plenty of legacy/deprecated drivers in use which will need updating.

The following features have been removed due to no longer being available
from the IDF:
  - ADC hall effect sensor reading
  - Configuration of SD SPI host via sdmmc module (now must be done first
    via the spimaster module)
  - FAT partition selection on external SD cards; only the first FAT
    partition is supported by the IDF now

On the other hand, the eth module now supports the following new chipsets:
  - KSZ8001
  - KSZ8021
  - KSZ8031
  - KSZ8051
  - KSZ8061
  - KSZ8091
  - Possibly additional models in the LAN87xx series (the IDF docs aren't
    clear on precisely which models are handled)

Further, the sdmmc module is now available on the ESP32-S3 as well.
2024-01-30 11:34:03 +11:00
Marcel Stör 2b8e327131 Fix the RTD configuration 2024-01-23 23:01:12 +01:00