Search found 29 matches

by DL88AI88
Fri Mar 31, 2017 1:56 pm
Forum: ESP-IDF
Topic: interface motor pwm - already supported and provided example?
Replies: 4
Views: 7306

Re: interface motor pwm - already supported and provided example?

Hi there, thanks for the hints. Actually, I saw Neil's video about ledc pwm which is quite informative (as well as Neil's book is). I read through the esp8266 reference manual as well for a motor pwm library. Is there a special reason why this interface is not provided yet? For me and many other pot...
by DL88AI88
Wed Mar 29, 2017 12:09 am
Forum: ESP-IDF
Topic: [Solved] Eclipse, C++ and the Standard Template Library
Replies: 11
Views: 19456

Re: [Solved] Eclipse, C++ and the Standard Template Library

Howdy Neil, yeah, for lambda I took an additional dive here: http://en.cppreference.com/w/cpp/language/lambda By the way, you mentioned that the Xtensa toolsuite supports C++11. Is it likely that it will support c++17 in the near future? The reason why I ask is because I am interested in the feature...
by DL88AI88
Tue Mar 28, 2017 8:42 am
Forum: General Discussion
Topic: cpp template using freertos and external cpp libraries
Replies: 3
Views: 7020

Re: cpp template using freertos and external cpp libraries

Hi RSN,

wow, that is really helpful.
Thumbs up!
Thank you.

Best regards

DL88AI88
by DL88AI88
Mon Mar 27, 2017 1:26 pm
Forum: News
Topic: ESP-IDF 2.0
Replies: 29
Views: 76587

Re: ESP-IDF 2.0

Hello Igrr, hello Neil,

that is indeed easy.

Thank you very much.

Best regards

DL88AI88
by DL88AI88
Mon Mar 27, 2017 9:21 am
Forum: News
Topic: ESP-IDF 2.0
Replies: 29
Views: 76587

Re: ESP-IDF 2.0

Hello Neil,

does that mean I can't just upgrade my esp-idf folder in my linux system and compile with the new version?
(Sorry for my simplified thinking.)

Best regards

DL88AI88
by DL88AI88
Sun Mar 26, 2017 3:01 pm
Forum: General Discussion
Topic: cpp template using freertos and external cpp libraries
Replies: 3
Views: 7020

cpp template using freertos and external cpp libraries

Hi there, I noticed that there are some cpp skeletons out there like these: e.g. https://github.com/nkolban/esp32-snippets/tree/master/skeletons/cpp in conjunction with these snippets (works fine for me) e.g. https://github.com/pcbreflux/espressif/tree/master/esp32/app/ESP32_cpp_hello (haven't teste...
by DL88AI88
Sun Mar 26, 2017 2:28 pm
Forum: ESP-IDF
Topic: [Solved] Eclipse, C++ and the Standard Template Library
Replies: 11
Views: 19456

Re: [Solved] Eclipse, C++ and the Standard Template Library

Hello Neil, hello Angus, I sat myself on two chairs, today and so far it works. :) I followed the video tutorial in order to build a Standard Template Library. I modified the included paths of include.xml /opt/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/5.2.0 /opt/xtensa-esp32-elf/lib/gcc/xtensa-e...
by DL88AI88
Sun Mar 26, 2017 12:29 pm
Forum: News
Topic: ESP-IDF 2.0
Replies: 29
Views: 76587

Re: ESP-IDF 2.0

Hi there, in order to use the latest esp-idf version from here which is the best way to "update" a running esp32 environment? e.g.: if a I have a linux directory like /esp/esp-idf, do I only have to delete the existing esp-idf folder an just redo step 2 of your instruction from here ? best regards D...
by DL88AI88
Thu Mar 23, 2017 10:54 am
Forum: Hardware
Topic: About the CAN controller.
Replies: 175
Views: 307932

Re: About the CAN controller.

OK, I solved it like this:

in component.mk I changed

COMPONENT_ADD_INCLUDEDIRS := / drv/CAN/include
COMPONENT_SRCDIRS := / drv/CAN drv/CAN/cfg

to

COMPONENT_ADD_INCLUDEDIRS := . drv/CAN/include
COMPONENT_SRCDIRS := . drv/CAN drv/CAN/cfg


Now it compiles.
:)

best regards

DL88AI88
by DL88AI88
Wed Mar 22, 2017 10:54 pm
Forum: Hardware
Topic: About the CAN controller.
Replies: 175
Views: 307932

Re: About the CAN controller.

No vm.
Just Ubuntu Linux 16.10.

All other examples are being built without issues.

best regards

DL88AI88