Search found 29 matches

by DL88AI88
Mon Dec 02, 2019 7:10 am
Forum: General Discussion
Topic: eagle library
Replies: 2
Views: 6520

Re: eagle library

Hi there,

maybe this site helps:
https://github.com/StudioSophisti/ESP-W ... e-Breakout

for kicad you might try these:
https://github.com/kazkojima/esp32-phy/ ... r/hardware

you will find more on this site.

cheers
DL88AI88
by DL88AI88
Wed Sep 04, 2019 10:47 am
Forum: General Discussion
Topic: Building and Flashing ESP32 Applications with Eclipse IDE and cmake
Replies: 1
Views: 3122

Building and Flashing ESP32 Applications with Eclipse IDE and cmake

Hi there,

I am missing a tutorial of how to set up Eclipse IDE with cmake for building and flashing ESP32 Applications.
Any help is appreciated.

Thanks in advance.

Cheers

DL88AI88
by DL88AI88
Tue Aug 27, 2019 6:29 am
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 783692

Re: What would you like to see in The Next Chip?

Hi there, after two year anniversary of questioning what we like to see in the next chip I am starting to ask myself when will I see the Next Chip? Sure, you released a single core chip design recently (based on Tensilica's LX7?) which is good for some applications, but... what about a dual core chi...
by DL88AI88
Sat May 13, 2017 10:27 am
Forum: General Discussion
Topic: how to use esp32 input capture and motor pwm function?
Replies: 15
Views: 33199

Re: how to use esp32 input capture and motor pwm function?

Hi there,

great news, mcpwm is out now:
official espressif example on github.

Examples for brushed motors, brushless motors and servos are provided.

Thank you very much!

Best regards

DL88AI88
by DL88AI88
Sun Apr 23, 2017 3:57 pm
Forum: Sample Code
Topic: ESP32 Elliptic curve cryptography with micro-ecc, aes, sha example
Replies: 3
Views: 11144

Re: ESP32 Elliptic curve cryptography with micro-ecc, aes, sha example

Hi pcbreflux,

this is really cool.
Please, more of those examples.

Something like reading from an uart (e.g. rfid rdm6300 keys) and sending it as encrypted mqtt messages via wifi to a mosqitto server. ;)

Keep on publishing.

Best regards.

DL88AI88
by DL88AI88
Sun Apr 23, 2017 3:22 pm
Forum: General Discussion
Topic: how to use esp32 input capture and motor pwm function?
Replies: 15
Views: 33199

Re: how to use esp32 input capture and motor pwm function?

Hi ESP_nilay, good news! Thank you. There are some information provided here, already: Api description of (datasheet v1.5 page 10) PWM0_OUT0~2 (shouldn't it be PWM0_OUT_IN0~2 ?) PWM1_OUT_IN0~2 PWM0_FLT_IN0~2 PWM1_FLT_IN0~2 PWM0_CAP_IN0~2 PWM1_CAP_IN0~2 PWM0_SYNC_IN0~2 PWM1_SYNC_IN0~2 It is said that...
by DL88AI88
Thu Apr 13, 2017 8:17 am
Forum: General Discussion
Topic: How to structure semi-complex application?
Replies: 6
Views: 12712

Re: How to structure semi-complex application?

Hi, I am fiddling myself through this documentation: http://www.freertos.org/Documentation/RTOS_book.html If you are in controlling a motor with sensors or commands you may find the presentation given in the following url useful: Source: http://www.renesasinteractive.com/file.php/1/CoursePDFs/DevCon...
by DL88AI88
Thu Apr 13, 2017 7:07 am
Forum: Sample Code
Topic: FreeRtos: cpp and c - blink examples
Replies: 0
Views: 4426

FreeRtos: cpp and c - blink examples

Hi there, one can use freertos on esp32 with c-code as well as with cpp. To see the slight differences in the code, please find attached a simple blink example for both. Each example runs two tasks, each task blinks an led. One can use them as a beginning programming in cpp or c using freertos. The ...
by DL88AI88
Wed Apr 05, 2017 7:08 am
Forum: General Discussion
Topic: [solved]: freertos: c-example blink and cpp-example blink - invalid conversion error in cpp
Replies: 4
Views: 18451

[solved]: c-example blink and cpp-example blink - invalid conversion error in cpp

Hi guys,

thanks for clearing this cpp thing up and showing the right solution.

Please, find attached two working freertos blink examples
written in cpp and c.

If you find them useful, feel free to use them.


Best regards

DL88AI88
by DL88AI88
Tue Apr 04, 2017 10:48 am
Forum: General Discussion
Topic: [solved]: freertos: c-example blink and cpp-example blink - invalid conversion error in cpp
Replies: 4
Views: 18451

[solved]: freertos: c-example blink and cpp-example blink - invalid conversion error in cpp

Hi there, out of curiosity I just wanted to compare the usage of freertos within a blink example between 'c' and 'cpp'. So here are the examples. The c example works fine. The cpp example gives me some errors like this at gpio_set_direction(BLINK_GPIO_1, GPIO_MODE_OUTPUT); error: invalid conversion ...