Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ESP32 new version S2 S3 C3 #25

Open
forty76 opened this issue May 21, 2024 · 6 comments
Open

ESP32 new version S2 S3 C3 #25

forty76 opened this issue May 21, 2024 · 6 comments

Comments

@forty76
Copy link

forty76 commented May 21, 2024

Hello, thank you for your fantastic libraries

Unfortunately Arduino detects several errors when using the new ESP32 (S2,S3,C3). I'm currently trying
sergei/NMEA2000_esp32_twai (https://github.com/sergei/NMEA2000_esp32_twai)

You could implement the right libraries for the various devices in the NMEA2000_CAN.h file.

#elif USE_N2K_CAN == USE_N2K_ESP32_CAN
#if CONFIG_IDF_TARGET_ESP32S2
#include <NMEA2000_esp32_twai.h>
tNMEA2000 &NMEA2000=(new NMEA2000_esp32_twai());
#elif CONFIG_IDF_TARGET_ESP32S3
#include <NMEA2000_esp32_twai.h>
tNMEA2000 &NMEA2000=
(new NMEA2000_esp32_twai());
#elif CONFIG_IDF_TARGET_ESP32
#include <NMEA2000_esp32.h>
tNMEA2000 &NMEA2000=*(new tNMEA2000_esp32());
#else
#error "Unrecognized ESP."
#endif

@ttlappalainen
Copy link
Owner

I won't, since it does not use properly my library.

@unxs0
Copy link

unxs0 commented Jun 12, 2024

I won't, since it does not use properly my library.

Can we crowd fund the work needed to get esp32-s3 support?

@ttlappalainen
Copy link
Owner

Do you need it personally or commercially? Why S3?

@unxs0
Copy link

unxs0 commented Jun 18, 2024 via email

@ibravo
Copy link

ibravo commented Jun 19, 2024

+1 for adding support to the Lilygo T Display S3 board. These are great boards that have an attached screen, thus able to display the data on the same board, making it great for a small footprint device.
I'm also using it for personal use, to attach to the NMEA2k network and display the results in the little screen.

@skarlsson
Copy link

I hacked together something that you can steal or take some inspiration from. https://github.com/skarlsson/NMEA2000_twai. I used it successfully (last week) for 3 devices esp32, esp32s3 and espc3 (olimex card and xiao) using esp idf 5.x

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants